Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Bump github.com/hashicorp/terraform from 0.12.10 to 0.12.13 #8

Conversation

dependabot-preview[bot]
Copy link

Bumps github.com/hashicorp/terraform from 0.12.10 to 0.12.13.

Release notes

Sourced from github.com/hashicorp/terraform's releases.

v0.12.13

UPGRADE NOTES:

  • Remote backend local-only operations: Previously the remote backend was not correctly handling variables marked as "HCL" in the remote workspace when running local-only operations like terraform import, instead interpreting them as literal strings as described in #23228.

    That behavior is now corrected in this release, but in the unlikely event that an existing remote workspace contains a variable marked as "HCL" whose value is not valid HCL syntax these local-only commands will now fail with a syntax error where previously the value would not have been parsed at all and so an operation not relying on that value may have succeeded in spite of the problem. If you see an error like "Invalid expression for var.example" on local-only commands after upgrading, ensure that the remotely-stored value for the given variable uses correct HCL value syntax.

    This does not affect true remote operations like terraform plan and terraform apply, because the processing of variables for those always happens in the remote system.

BUG FIXES:

  • config: Fix regression where self wasn't properly evaluated when using for_each (#23215)
  • config: dotfiles are no longer excluded when copying existing modules; previously, any dotfile/dir was excluded in this copy, but this change makes the local copy behavior match go-getter behavior (#22946)
  • core: Ensure create_before_destroy ordering is enforced with dependencies between modules (#22937)
  • core: Fix some destroy-time cycles due to unnecessary edges in the graph, and remove unused resource nodes (#22976)
  • backend/remote: Correctly handle remotely-stored variables that are marked as "HCL" when running local-only operations like terraform import. Previously they would produce a type mismatch error, due to misinterpreting them as literal strings. (#23229)

v0.12.12

BUG FIXES:

  • backend/remote: Don't do local validation of whether variables are set prior to submitting, because only the remote system knows the full set of configured stored variables and environment variables that might contribute. This avoids erroneous error messages about unset required variables for remote runs when those variables will be set by stored variables in the remote workspace. (#23122)

v0.12.11

ENHANCEMENTS:

  • backend/s3: Support role_arn in AWS configuration files (#22994)
  • backend/remote: Remote backend will now ignore all .terraform/ (exclusive of .terraform/modules) and .git/ directories for uploads during remote plans/applies. You can exclude files from upload to TFC by adding a .terraformignore file to your configuration directory, more details at https://www.terraform.io/docs/backends/types/remote.html (#23105)

BUG FIXES:

  • config: Clean up orphan modules in the presence of -target (#21313)
  • config: Always evaluate whole resources rather than instances in expressions, so that invalid instance indexes can return a useful error rather than unknown (#22846)
  • command/jsonplan: fix bug with missing nested modules planned_values output (#23092)
  • command/show: Fix panic when the only resource instance is deposed (#23027)
  • commands: When required root module variables are not provided and interactive input is disabled (-input=false), produce a proper "variable not defined" error rather than falling through to an internal assertion failure. (#23040)
  • provisioner/puppet: fix bug when connection type was not set in config (#23057)
Changelog

Sourced from github.com/hashicorp/terraform's changelog.

0.12.13 (October 31, 2019)

UPGRADE NOTES:

  • Remote backend local-only operations: Previously the remote backend was not correctly handling variables marked as "HCL" in the remote workspace when running local-only operations like terraform import, instead interpreting them as literal strings as described in #23228.

    That behavior is now corrected in this release, but in the unlikely event that an existing remote workspace contains a variable marked as "HCL" whose value is not valid HCL syntax these local-only commands will now fail with a syntax error where previously the value would not have been parsed at all and so an operation not relying on that value may have succeeded in spite of the problem. If you see an error like "Invalid expression for var.example" on local-only commands after upgrading, ensure that the remotely-stored value for the given variable uses correct HCL value syntax.

    This does not affect true remote operations like terraform plan and terraform apply, because the processing of variables for those always happens in the remote system.

BUG FIXES:

  • config: Fix regression where self wasn't properly evaluated when using for_each (#23215)
  • config: dotfiles are no longer excluded when copying existing modules; previously, any dotfile/dir was excluded in this copy, but this change makes the local copy behavior match go-getter behavior (#22946)
  • core: Ensure create_before_destroy ordering is enforced with dependencies between modules (#22937)
  • core: Fix some destroy-time cycles due to unnecessary edges in the graph, and remove unused resource nodes (#22976)
  • backend/remote: Correctly handle remotely-stored variables that are marked as "HCL" when running local-only operations like terraform import. Previously they would produce a type mismatch error, due to misinterpreting them as literal strings. (#23229)

0.12.12 (October 18, 2019)

BUG FIXES:

  • backend/remote: Don't do local validation of whether variables are set prior to submitting, because only the remote system knows the full set of configured stored variables and environment variables that might contribute. This avoids erroneous error messages about unset required variables for remote runs when those variables will be set by stored variables in the remote workspace. (#23122)

0.12.11 (October 17, 2019)

ENHANCEMENTS:

  • backend/s3: Support role_arn in AWS configuration files (#22994)
  • backend/remote: Remote backend will now ignore all .terraform/ (exclusive of .terraform/modules) and .git/ directories for uploads during remote plans/applies. You can exclude files from upload to TFC by adding a .terraformignore file to your configuration directory, more details at https://www.terraform.io/docs/backends/types/remote.html (#23105)

BUG FIXES:

  • config: Clean up orphan modules in the presence of -target (#21313)
  • config: Always evaluate whole resources rather than instances in expressions, so that invalid instance indexes can return a useful error rather than unknown (#22846)
  • command/jsonplan: fix bug with missing nested modules planned_values output (#23092)
  • command/show: Fix panic when the only resource instance is deposed (#23027)
  • commands: When required root module variables are not provided and interactive input is disabled (-input=false), produce a proper "variable not defined" error rather than falling through to an internal assertion failure. (#23040)
  • provisioner/puppet: fix bug when connection type was not set in config (#23057)
Commits
  • 5cb4596 v0.12.13
  • 5070ab7 Merge pull request #23185 from scott1138/patch-1
  • 6afb82e Update CHANGELOG.md
  • 8f27409 backend/remote: Support HCL variable values in local operations
  • 9f9f220 backend/remote: Unlock workspace if Context fails
  • 74249a8 Merge pull request #23235 from hashicorp/cgriggs01-cherryservers
  • e3b18cd [Website] CherryServer doc links
  • cd7c3e4 update CHANGELOG.md
  • 7829a4f Merge pull request #23215 from hashicorp/jbardin/for-each-self
  • 3839405 correctly evaluate self in for_each resources
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [github.com/hashicorp/terraform](https://github.com/hashicorp/terraform) from 0.12.10 to 0.12.13.
- [Release notes](https://github.com/hashicorp/terraform/releases)
- [Changelog](https://github.com/hashicorp/terraform/blob/master/CHANGELOG.md)
- [Commits](hashicorp/terraform@v0.12.10...v0.12.13)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Nov 1, 2019
@pablo-ruth pablo-ruth merged commit 1b834b1 into master Nov 6, 2019
@pablo-ruth pablo-ruth deleted the dependabot/go_modules/github.com/hashicorp/terraform-0.12.13 branch November 6, 2019 15:48
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant