mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-25 01:00:59 -04:00
Updated provider documentation to highlight limitations of interpolation syntax
This commit is contained in:
@@ -117,3 +117,14 @@ KEY {
|
||||
CONFIG
|
||||
}
|
||||
```
|
||||
|
||||
## Interpolation
|
||||
Providers support [interpolation syntax](/docs/configuration/interpolation.html) allowing dynamic configuration at run time.
|
||||
|
||||
```
|
||||
provider "aws" {
|
||||
region = "${var.aws_region}"
|
||||
}
|
||||
```
|
||||
|
||||
Only [variables](/docs/configuration/variables) and [remote state](/docs/state/remote.html) are supported, it is not possible to use the output from a resource, module or data source in the interpolation syntax for a provider.
|
||||
|
||||
Reference in New Issue
Block a user