generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
860a317
commit 78d1731
Showing
17 changed files
with
84 additions
and
505 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,35 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "scaffolding Provider" | ||
subcategory: "" | ||
page_title: "Provider: Assert" | ||
description: |- | ||
The Assert provider provides functions to verify values in your Terraform configuration to make sure they meet specific criteria. | ||
--- | ||
|
||
# scaffolding Provider | ||
# ASSERT Provider | ||
|
||
The Assert provider is a utility provider that helps practitioners | ||
to simplify the way they write assertions in their Terraform configuration. | ||
|
||
This provider does not manage any infrastructure, but instead provides a set of provider-defined functions | ||
that can be used to assert that values in Terraform configuration meet specific criteria. | ||
|
||
Use the navigation to the left to read about the available resources. | ||
|
||
## Example Usage | ||
|
||
As of Terraform 1.8 and later, providers can implement functions that you can call from the Terraform configuration. | ||
|
||
Define the provider as a `required_provider` to use its functions | ||
|
||
```terraform | ||
provider "scaffolding" { | ||
# example configuration here | ||
terraform { | ||
required_providers { | ||
assert = { | ||
source = "bschaatsbergen/assert" | ||
version = ">= 1.0.0" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
## Limitations | ||
|
||
- `endpoint` (String) Example provider attribute |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
provider "scaffolding" { | ||
# example configuration here | ||
} | ||
terraform { | ||
required_providers { | ||
assert = { | ||
source = "bschaatsbergen/assert" | ||
version = ">= 1.0.0" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.