Updated provider documentation to highlight limitations of interpolation syntax
This commit is contained in:
parent
e2a428b43f
commit
b908fc54dc
|
@ -117,3 +117,14 @@ KEY {
|
||||||
CONFIG
|
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.
|
||||||
|
|
Loading…
Reference in New Issue