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
bf5522aaec
terraform
/
command
/
testdata
/
013upgrade-multiple-blocks
/
expected
/
foo.tf
5 lines
72 B
Terraform
Raw
Normal View
History
Unescape
Escape
command: Fix 0.13upgrade bug with multiple blocks If a configuration had multiple blocks in the versions.tf file, it would be added to the `rewritePaths` list multiple times. We would then remove it from this slice, but only once, and so the output file would later be rewritten to remove the required providers block. This commit uses a set instead of a list to prevent this case, and adds a regression test.
2020-05-07 23:42:40 +02:00
terraform
{
required_version
=
"
>= 0.12
"
}
command: Rework 0.13upgrade sub-command This commit implements most of the intended functionality of the upgrade command for rewriting configurations. For a given module, it makes a list of all providers in use. Then it attempts to detect the source address for providers without an explicit source. Once this step is complete, the tool rewrites the relevant configuration files. This results in a single "required_providers" block for the module, with a source for each provider. Any providers for which the source cannot be detected (for example, unofficial providers) will need a source to be defined by the user. The tool writes an explanatory comment to the configuration to help with this.
2020-05-06 19:35:35 +02:00
resource
foo_instance
c
{
}