This website requires JavaScript.
Explore
Help
Sign In
ResiLien
/
terraform
Watch
2
Star
0
Fork
You've already forked terraform
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
03640057be
terraform
/
configs
/
configload
/
testdata
/
expand-modules
/
provider-configured
/
child
/
main.tf
8 lines
88 B
Terraform
Raw
Normal View
History
Unescape
Escape
Disallow provider configuration in expanding modules (#24892) Validate providers in expanding modules. Expanding modules cannot have provider configurations with non-empty configs, which includes having a version configured. If an empty or alias-only block is passed, the provider must be passed through the providers argument on the module call
2020-05-08 17:35:28 +02:00
provider
"
aws
"
{
configs: deprecate version argument inside provider configuration blocks (#26135) The version argument is deprecated in Terraform v0.14 in favor of required_providers and will be removed in a future version of terraform (expected to be v0.15). The provider configuration documentation already discourages use of 'version' inside provider configuration blocks, so it only needed an extra note that it is actively deprecated.
2020-09-08 14:19:00 +02:00
region
=
"
us-west-2
"
Disallow provider configuration in expanding modules (#24892) Validate providers in expanding modules. Expanding modules cannot have provider configurations with non-empty configs, which includes having a version configured. If an empty or alias-only block is passed, the provider must be passed through the providers argument on the module call
2020-05-08 17:35:28 +02:00
}
output
"
my_output
"
{
value
=
"
my output
"
}