-
Notifications
You must be signed in to change notification settings - Fork 0
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
9754298
commit 428bd8f
Showing
10 changed files
with
33 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# terraform-provider-stdlib | ||
|
||
The Terraform Provider Plugin "stdlib" provides additional functions to enhance the capabilities of the Terraform DSL through HCL2. These additional functions will not overlap with the core functionality of Terraform. If that were ever to occur, then the corresponding function in this plugin will be gradually deprecated. | ||
|
||
This README is purposefully short as all documentation is generated with `terraform-plugin-docs` and hosted at the [Terraform Registry](https://registry.terraform.io/providers/mschuchard/stdlib/latest/docs) as per usual. | ||
|
||
This repository additionally does accept feature requests for e.g. additional functions or enhancements to current functions in the Github issue tracker. |
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
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
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
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ terraform { | |
} | ||
} | ||
|
||
provider "stdlib" {} | ||
provider "stdlib" {} # can be omitted |
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,15 +1,22 @@ | ||
--- | ||
page_title: "Provider: stdlib" | ||
page_title: "{{.ProviderShortName}} Provider" | ||
subcategory: "" | ||
description: |- | ||
The stdlib provider provides additional functions for use within Terraform's HCL2 configuration language. | ||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
--- | ||
|
||
# {{ .ProviderShortName | upper }} Provider | ||
# {{.ProviderShortName}} Provider | ||
|
||
PLACEHOLDER | ||
{{ .Description | trimspace }} | ||
|
||
The Terraform provider plugin "stdlib" provides additional functions for Terraform available as data sources. These data sources enable functionality not intrinsically available to Terraform, or streamlined within a single invocation. However, data sources are not as robustly invoked with inputs or returns as true intrinsic functions. Without true support for custom functions this becomes the next best available option. | ||
|
||
Use the navigation to the left to read about the available data sources which are each equivalent to Terraform functions. | ||
|
||
{{ if .HasExample -}} | ||
## Example Usage | ||
|
||
{{ tffile "examples/provider/provider.tf" }} | ||
{{- end }} | ||
|
||
{{ .SchemaMarkdown | trimspace }} |