This repository was archived by the owner on Jun 17, 2022. It is now read-only.
Update dependency hashicorp/terraform to v1.1.9#16
Open
renovate[bot] wants to merge 1 commit intomasterfrom
Open
Update dependency hashicorp/terraform to v1.1.9#16renovate[bot] wants to merge 1 commit intomasterfrom
renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
8921a6a to
7eb0e6f
Compare
7eb0e6f to
5c604d7
Compare
5c604d7 to
49cf6ff
Compare
49cf6ff to
70e8fe1
Compare
70e8fe1 to
7ebe3c5
Compare
7ebe3c5 to
adcd88a
Compare
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0.1->1.1.9Release Notes
hashicorp/terraform
v1.1.9Compare Source
1.1.9 (April 20, 2022)
BUG FIXES:
ENHANCEMENTS:
v1.1.8Compare Source
1.1.8 (April 07, 2022)
BUG FIXES:
sum()function is called with a collection of string-encoded numbers, such assum(["1", "2", "3"]). (#30684)terraform applyphase if an error occurs during backend configuration. (#30780)v1.1.7Compare Source
1.1.7 (March 02, 2022)
BUG FIXES:
terraform show -json: Improve performance for deeply-nested object values. The previous implementation was accidentally quadratic, which could result in very long execution time for generating JSON plans, and timeouts on Terraform Cloud and Terraform Enterprise. (#30561)after migrating state to TFC.
v1.1.6Compare Source
1.1.6 (February 16, 2022)
BUG FIXES:
typefunction. This function may only be used at the top level of console expressions, to display the type of a given value. Attempting to use this function in complex expressions will now display a diagnostic error instead of crashing. (#30476)terraform state mv: Will now correctly exit with error code1when the specified resources cannot be found in state. Previously Terraform would display appropriate diagnostic errors, but exit successfully. (#29365)v1.1.5Compare Source
1.1.5 (February 02, 2022)
ENHANCEMENTS:
BUG FIXES:
terraform workspace select(#30193)v1.1.4Compare Source
1.1.4 (January 19, 2022)
BUG FIXES:
countto usingcount, or vice-versa. (#30333)v1.1.3Compare Source
1.1.3 (January 06, 2022)
BUG FIXES:
terraform init: Will now remove from the dependency lock file entries for providers not used in the current configuration. Previously it would leave formerly-used providers behind in the lock file, leading to "missing or corrupted provider plugins" errors when other commands verified the consistency of the installed plugins against the locked plugins. (#30192)movedblock refactoring to include nested modules (#30233)terraform show: Disable plan state lineage checks, ensuring that we can show plan files which were generated against non-default state files (#30205)v1.1.2Compare Source
1.1.2 (December 17, 2021)
If you are using Terraform CLI v1.1.0 or v1.1.1, please upgrade to this new version as soon as possible.
Terraform CLI v1.1.0 and v1.1.1 both have a bug where a failure to construct the apply-time graph can cause Terraform to incorrectly report success and save an empty state, effectively "forgetting" all existing infrastructure. Although configurations that already worked on previous releases should not encounter this problem, it's possible that incorrect future configuration changes would trigger this behavior during the apply step.
BUG FIXES:
-targetin combination withmovedblocks within modules (#30189)v1.1.1Compare Source
1.1.1 (December 15, 2021)
If you are using Terraform CLI v1.1.0 or v1.1.1, please upgrade to the latest version as soon as possible.
Terraform CLI v1.1.0 and v1.1.1 both have a bug where a failure to construct the apply-time graph can cause Terraform to incorrectly report success and save an empty state, effectively "forgetting" all existing infrastructure. Although configurations that already worked on previous releases should not encounter this problem, it's possible that incorrect future configuration changes would trigger this behavior during the apply step.
BUG FIXES:
countorfor_eachvalue (#30151)countorfor_each(#30171)v1.1.0Compare Source
1.1.0 (December 08, 2021)
If you are using Terraform CLI v1.1.0 or v1.1.1, please upgrade to the latest version as soon as possible.
Terraform CLI v1.1.0 and v1.1.1 both have a bug where a failure to construct the apply-time graph can cause Terraform to incorrectly report success and save an empty state, effectively "forgetting" all existing infrastructure. Although configurations that already worked on previous releases should not encounter this problem, it's possible that incorrect future configuration changes would trigger this behavior during the apply step.
Terraform v1.1.0 is a new minor release, containing some new features and some bug fixes whose scope was too large for inclusion in a patch release.
NEW FEATURES:
movedblocks for refactoring within modules: Module authors can now record in module source code whenever they've changed the address of a resource or resource instance, and then during planning Terraform will automatically migrate existing objects in the state to new addresses.This therefore avoids the need for users of a shared module to manually run
terraform state mvafter upgrading to a version of the module, as long as the change is expressible as static configuration. However,terraform state mvwill remain available for use in more complex migration situations that are not well-suited to declarative configuration.A new
cloudblock in theterraformsettings block introduces a native Terraform Cloud integration for the CLI-driven run workflow.The Cloud integration includes several enhancements, including per-run variable support using the
-varflag, the ability to map Terraform Cloud workspaces to the current configuration via Workspace Tags, and an improved user experience for Terraform Cloud and Enterprise users with actionable error messages and prompts.terraform planandterraform applyboth now include additional annotations for resource instances planned for deletion to explain why Terraform has proposed that action.For example, if you change the
countargument for a resource to a lower number then Terraform will now mention that as part of proposing to destroy any existing objects that exceed the new count.UPGRADE NOTES:
This release is covered by the Terraform v1.0 Compatibility Promises, but does include some changes permitted within those promises as described below.
Terraform on macOS now requires macOS 10.13 High Sierra or later; Older macOS versions are no longer supported.
The
terraform graphcommand no longer supports-type=validateand-type=evaloptions. The validate graph is always the same as the plan graph anyway, and the "eval" graph was just an implementation detail of theterraform consolecommand. The default behavior of creating a plan graph should be a reasonable replacement for both of the removed graph modes. (Please note thatterraform graphis not covered by the Terraform v1.0 compatibility promises, because its behavior inherently exposes Terraform Core implementation details, so we recommend it only for interactive debugging tasks and not for use in automation.)terraform applywith a previously-saved plan file will now verify that the provider plugin packages used to create the plan fully match the ones used during apply, using the same checksum scheme that Terraform normally uses for the dependency lock file. Previously Terraform was checking consistency of plugins from a plan file using a legacy mechanism which covered only the main plugin executable, not any other files that might be distributed alongside in the plugin package.This additional check should not affect typical plugins that conform to the expectation that a plugin package's contents are immutable once released, but may affect a hypothetical in-house plugin that intentionally modifies extra files in its package directory somehow between plan and apply. If you have such a plugin, you'll need to change its approach to store those files in some other location separate from the package directory. This is a minor compatibility break motivated by increasing the assurance that plugins have not been inadvertently or maliciously modified between plan and apply.
terraform state mvwill now error when legacy-backupor-backup-outoptions are used without the-stateoption on non-local backends. These options operate on a local state file only. Previously, these options were accepted but ignored silently when used with non-local backends.In the AzureRM backend, the new opt-in option
use_microsoft_graphswitches to using MSAL authentication tokens and Microsoft Graph rather than using ADAL tokens and Azure Active Directory Graph, which is now deprecated by Microsoft. The new mode will become the default in Terraform v1.2, so please plan to migrate to using this setting and test with your own Azure AD tenant prior to the Terraform v1.2 release.ENHANCEMENTS:
sourceargument inmoduleblocks) during configuration decoding rather than only at module installation time. This is largely just an internal refactoring, but a visible benefit of this change is that theterraform initmessages about module downloading will now show the canonical module package address Terraform is downloading from, after interpreting the special shorthands for common cases like GitHub URLs. (#28854)nullable = falseensures that a variable value will never benull, and may instead take on the variable's default value if the caller sets it explicitly tonull. (#29832)terraform planandterraform apply: When Terraform plans to destroy a resource instance due to it no longer being declared in the configuration, the proposed plan output will now include a note hinting at what situation prompted that proposal, so you can more easily see what configuration change might avoid the object being destroyed. (#29637)terraform planandterraform apply: Terraform will now report explicitly in the UI if it automatically moves a resource instance to a new address as a result of adding or removing thecountargument from an existing resource. For example, if you previously hadresource "aws_subnet" "example"withoutcount, you might haveaws_subnet.examplealready bound to a remote object in your state. If you addcount = 1to that resource then Terraform would previously silently rebind the object toaws_subnet.example[0]as part of planning, whereas now Terraform will mention that it did so explicitly in the plan description. (#29605)terraform workspace delete: will now allow deleting a workspace whose state contains only data resource instances and output values, without runningterraform destroyfirst. Previously the presence of data resources would require using-forceto override the safety check guarding against accidentally forgetting about remote objects, but a data resource is not responsible for the management of its associated remote object(s) and so there's no reason to require explicit deletion. (#29754)terraform validate: Terraform now uses precise type information for resources during config validation, allowing more problems to be caught that that step rather than only during the planning step. (#29862)terraform state mvwill now return an error for-backupor-backup-outoptions used without the-stateoption, unless the working directory is initialized to use the local backend. Previously Terraform would silently ignore those options, since they are applicable only to the local backend. (#27908)terraform console: now has a newtype()function, available only in the interactive console, for inspecting the exact type of a particular value as an aid to debugging. (#28501)BUG FIXES:
ignore_changes = allnow works in override files. (#29849)depends_onarguments referring to not-yet-converged managed resources. (#29682)ignore_changescan no longer cause a null map to be converted to an empty map, which would otherwise potentially cause surprising side-effects in provider logic. (#29928)terraform plan: Improved rendering of changes inside attributes that accept lists, sets, or maps of nested object types. (#29827, #29983, #29986)terraform apply: Will no longer try to apply a stale plan that was generated against an originally-empty state. Previously this was an unintended exception to the rule that a plan can only be applied to the state snapshot it was generated against. (#29755)terraform show -json: Attributes that are declared as using the legacy Attributes as Blocks behavior are now represented more faithfully in the JSON plan output. (#29522)terraform init: Will now update the backend configuration hash value at a more approprimate time, to ensure properly restarting a backend migration process that failed on the first attempt. (#29860)assume_roleblock arguments, so that they are more compatible with theterraform_remote_statedata source. (#29307)v1.0.11Compare Source
1.0.11 (November 10, 2021)
ENHANCEMENTS:
sts_endpoint(#29841)BUG FIXES:
ignore_changes = allwould not work in override files (#29849)v1.0.10Compare Source
1.0.10 (October 28, 2021)
BUG FIXES:
-lockand-lock-timeoutflags for theinitcommand, which were removed in 0.15.0 (#29773)terraform init -input=falsewould hang waiting for user input to choose a workspace (#29805)v1.0.9Compare Source
1.0.9 (October 13, 2021)
BUG FIXES:
v1.0.8Compare Source
1.0.8 (September 29, 2021)
BUG FIXES:
required_versionas early as possibly duringinitso that version incompatibility can be reported before errors about new syntax (#29665)v1.0.7Compare Source
1.0.7 (September 15, 2021)
BUG FIXES:
v1.0.6Compare Source
1.0.6 (September 03, 2021)
ENHANCEMENTS:
BUG FIXES:
-force-copyflag and migrating state between multiple workspaces. (#29438)v1.0.5Compare Source
1.0.5 (August 18, 2021)
BUG FIXES:
terraform plan -jsonstructured logs, bringing this format into parity with the human-readable UI. (#29312)formatlist, ensuring the correct resulting type. (#29408)floorandceilcan no longer mutate their arguments. (#29408)v1.0.4Compare Source
1.0.4 (August 04, 2021)
BUG FIXES:
v1.0.3Compare Source
1.0.3 (July 21, 2021)
ENHANCEMENTS
terraform plan: The JSON logs (-jsonoption) will now includeresource_drift, showing changes detected outside of Terraform during the refresh step. (#29072)max_request_bytesallows larger requests and for the client, to match the server request limit. (#28078)BUG FIXES:
terraform plan: Will no longer panic when trying to render null maps. (#29207)v1.0.2Compare Source
1.0.2 (July 07, 2021)
BUG FIXES:
terraform show: Fix crash when rendering JSON plan with sensitive values in state (#29049)floorandceilfunctions no longer lower the precision of arguments to what would fit inside a 64-bit float, instead preserving precision in a similar way as most other arithmetic functions. (#29110)flattenfunction was incorrectly treating null values of an unknown type as if they were unknown values. Now it will treat them the same as any other non-list/non-tuple value, flattening them down into the result as-is. (#29110)Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.