Skip to content

Releases: hashicorp/terraform

v1.9.0-rc1

12 Jun 09:23
702f290
Compare
Choose a tag to compare
v1.9.0-rc1 Pre-release
Pre-release
version: Prepare for v1.9.0-rc1 release

v1.10.0-alpha20240606

v1.10.0-alpha20240606 Pre-release
Pre-release

1.10.0-alpha20240606 (June 6, 2024)

EXPERIMENTS:

Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.

  • ephemeral_values: This language experiment introduces a new special kind of value which Terraform allows to change between the plan phase and the apply phase, and between plan/apply rounds. Ephemeral values are never persisted in saved plan files or state snapshots, and so can only be used in parts of the language that don't require values to persist in those artifacts. Ephemeral input values are the main initial example of this concept, allowing the use of input variables to provide dynamic credentials that must change between plan and apply.
  • terraform test accepts a new option -junit-xml=FILENAME. If specified, and if the test configuration is valid enough to begin executing, then Terraform writes a JUnit XML test result report to the given filename, describing similar information as included in the normal test output. (#34291)
  • The new command terraform rpcapi exposes some Terraform Core functionality through an RPC interface compatible with go-plugin. The exact RPC API exposed here is currently subject to change at any time, because it's here primarily as a vehicle to support the Terraform Stacks private preview and so will be broken if necessary to respond to feedback from private preview participants, or possibly for other reasons. Do not use this mechanism yet outside of Terraform Stacks private preview.
  • The experimental "deferred actions" feature, enabled by passing the -allow-deferral option to terraform plan, permits count and for_each arguments in module, resource, and data blocks to have unknown values and allows providers to react more flexibly to unknown values. This experiment is under active development, and so it's not yet useful to participate in this experiment

Previous Releases

For information on prior major and minor releases, refer to their changelogs:

v1.8.5

05 Jun 09:32
8f2d640
Compare
Choose a tag to compare

1.8.5 (June 5, 2024)

BUG FIXES:

  • terraform test: Remove duplicate warning diagnostic when providing values for unknown variables in run blocks. (#35172)

v1.9.0-beta1

v1.9.0-beta1 Pre-release
Pre-release

1.9.0-beta1 (May 31, 2024)

NEW FEATURES:

  • Input variable validation rules can refer to other objects: Previously input variable validation rules could refer only to the variable being validated. Now they are general expressions, similar to those elsewhere in a module, which can refer to other input variables and to other objects such as data resources.
  • templatestring function: a new built-in function which is similar to templatefile but designed to render templates obtained dynamically, such as from a data resource result.

ENHANCEMENTS:

  • terraform plan: Improved presentation of OPA and Sentinel policy evaluations in HCP Terraform remote runs, for logical separation.
  • terraform init now accepts a -json option. If specified, enables the machine readable JSON output. (#34886)
  • terraform test: Test runs can now pass sensitive values to input variables while preserving their dynamic sensitivity. Previously sensitivity would be preserved only for variables statically declared as being sensitive, using sensitive = true. (#35021)
  • config: Input variable validation rules can now refer to other objects in the same module. (#34955)
  • core: Performance improvement during graph building for configurations with an extremely large number of resource blocks. (#35088)
  • built-in terraform provider: Allows moved block refactoring from the hashicorp/null provider null_resource resource type to the terraform_data resource type. (#35163)
  • terraform output with cloud block: Terraform no longer suggests that data loss could occur when outputs are not available. (#35143)
  • terraform console: Now has basic support for multi-line input in interactive mode. (#34822)
    If an entered line contains opening parentheses/etc that are not closed, Terraform will await another line of input to complete the expression. This initial implementation is primarily intended to support pasting in multi-line expressions from elsewhere, rather than for manual multi-line editing, so the interactive editing support is currently limited.
  • cli: Reduced copying of state to improve performance with larges numbers of resources. (#35164)
  • removed blocks can now declare destroy-time provisioners which will be executed when the associated resource instances are destroyed. (#35230)

BUG FIXES:

  • remote-exec provisioner: Each remote connection will now be closed immediately after use. (#34137)
  • backend/s3: Fixed the digest value displayed for DynamoDB/S3 state checksum mismatches. (#34387)
  • terraform test: Fix bug in which non-Hashicorp providers required by testing modules and initialised within the test files were assigned incorrect registry addresses. (#35161)
  • config: The templatefile function no longer returns a "panic" error if the template file path is marked as sensitive. Instead, the template rendering result is also marked as sensitive. (#35180)
  • terraform init: When selecting a version for a provider that has both positive and negative version constraints for the same prerelease -- e.g. 1.2.0-beta.1, !1.2.0-beta.1 -- the negative constraint will now overrule the positive, for consistency with how negative constraints are handled otherwise. Previously Terraform would incorrectly treat the positive as overriding the negative if the specified version was a prerelease. (#35181)

UPGRADE NOTES:

  • terraform test: It is no longer valid to specify version constraints within provider blocks within .tftest.hcl files. Instead, version constraints must be supplied within the main configuration where the provider is in use.

Previous Releases

For information on prior major and minor releases, see their changelogs:

v1.8.4

22 May 16:40
Compare
Choose a tag to compare

1.8.4 (May 22, 2024)

BUG FIXES:

  • core: Fix exponential slowdown in some cases when modules are using depends_on. (#35157)
  • import blocks: Fix bug where resources with nested, computed, and optional id attributes would fail to generate configuration. (#35220)
  • Updated to new golang.org/x/net release, which addressed CVE-2023-45288 (#35165)

v1.9.0-alpha20240516

v1.9.0-alpha20240516 Pre-release
Pre-release

1.9.0-alpha20240516 (May 16, 2024)

ENHANCEMENTS:

  • terraform console: Now has basic support for multi-line input in interactive mode. (#34822)

    If an entered line contains opening parentheses/etc that are not closed, Terraform will await another line of input to complete the expression. This initial implementation is primarily intended to support pasting in multi-line expressions from elsewhere, rather than for manual multi-line editing, so the interactive editing support is currently limited.

  • terraform plan: Improved presentation of OPA and Sentinel policy evaluations in HCP Terraform remote runs, for logical separation.

  • terraform init now accepts a -json option. If specified, enables the machine readable JSON output. (#34886)

  • terraform test: Test runs can now pass sensitive values to input variables while preserving their dynamic sensitivity. Previously sensitivity would be preserved only for variables statically declared as being sensitive, using sensitive = true. (#35021)

  • Performance improvement during graph building for configurations with an extremely large number of resource blocks. (#35088)

BUG FIXES:

  • remote-exec: Each remote connection will now be closed immediately after use. (#34137)
  • backend/s3: Fixed the digest value displayed for DynamoDB/S3 state checksum mismatches. (#34387)
  • terraform test: Fix bug in which non-Hashicorp providers required by testing modules and initialised within the test files were assigned incorrect registry addresses. (#35161)

UPGRADE NOTES:

  • terraform test: It is no longer valid to specify version constraints within provider blocks within .tftest.hcl files. Instead, version constraints must be supplied within the main configuration where the provider is in use.

EXPERIMENTS:

Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.

  • variable_validation_crossref: This language experiment allows validation blocks inside input variable declarations to refer to other objects inside the module where the variable is declared, including to the values of other input variables in the same module.
  • template_string_func: This language experiment introduces a new built-in function named templatestring which is similar to templatefile but designed to render templates obtained dynamically, such as from a data resource result.
  • terraform test accepts a new option -junit-xml=FILENAME. If specified, and if the test configuration is valid enough to begin executing, then Terraform writes a JUnit XML test result report to the given filename, describing similar information as included in the normal test output. (#34291)
  • The new command terraform rpcapi exposes some Terraform Core functionality through an RPC interface compatible with go-plugin. The exact RPC API exposed here is currently subject to change at any time, because it's here primarily as a vehicle to support the Terraform Stacks private preview and so will be broken if necessary to respond to feedback from private preview participants, or possibly for other reasons. Do not use this mechanism yet outside of Terraform Stacks private preview.
  • The experimental "deferred actions" feature, enabled by passing the -allow-deferral option to terraform plan, permits count and for_each arguments in module, resource, and data blocks to have unknown values and allows providers to react more flexibly to unknown values. This experiment is under active development, and so it's not yet useful to participate in this experiment.

Previous Releases

For information on prior major and minor releases, see their changelogs:

v1.8.3

08 May 09:09
6b949e7
Compare
Choose a tag to compare

1.8.3 (May 8, 2024)

BUG FIXES:

  • terraform test: Providers configured within an overridden module could panic. (#35110)
  • core: Fix crash when a provider incorrectly plans a nested object when the configuration is null (#35090)

v1.9.0-alpha20240501

v1.9.0-alpha20240501 Pre-release
Pre-release

1.9.0-alpha20240501 (May 1, 2024)

ENHANCEMENTS:

  • terraform console: Now has basic support for multi-line input in interactive mode. (#34822)

    If an entered line contains opening paretheses/etc that are not closed, Terraform will await another line of input to complete the expression. This initial implementation is primarily intended to support pasting in multi-line expressions from elsewhere, rather than for manual multi-line editing, so the interactive editing support is currently limited.

  • cli: Updates the Terraform CLI output to show logical separation between OPA and Sentinel policy evaluations

  • terraform init now accepts a -json option. If specified, enables the machine readable JSON output. (#34886)

  • terraform test: The test framework will now maintain sensitive metadata between run blocks. (#35021)

  • Core: improved performance of AttachResourceConfigTransformer (an implementation detail of plans and applies) when the number of resources is extremely large. (#35088)

BUG FIXES:

  • remote-exec: Each remote connection will be closed immediately after use (#34137)
  • backend/s3: Fixed the digest value displayed for DynamoDB/S3 state checksum mismatches (#34387)

EXPERIMENTS:

Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.

  • variable_validation_crossref: This language experiment allows validation blocks inside input variable declarations to refer to other objects inside the module where the variable is declared, including to the values of other input variables in the same module.
  • template_string_func: This language experiment introduces a new built-in function named templatestring which is similar to templatefile but designed to render templates obtained dynamically, such as from a data resource result.
  • terraform test accepts a new option -junit-xml=FILENAME. If specified, and if the test configuration is valid enough to begin executing, then Terraform writes a JUnit XML test result report to the given filename, describing similar information as included in the normal test output. (#34291)
  • The new command terraform rpcapi exposes some Terraform Core functionality through an RPC interface compatible with go-plugin. The exact RPC API exposed here is currently subject to change at any time, because it's here primarily as a vehicle to support the Terraform Stacks private preview and so will be broken if necessary to respond to feedback from private preview participants, or possibly for other reasons. Do not use this mechanism yet outside of Terraform Stacks private preview.
  • The experimental "deferred actions" feature, enabled by passing the -allow-deferral option to terraform plan, permits count and for_each arguments in module, resource, and data blocks to have unknown values and allows providers to react more flexibly to unknown values. This experiment is under active development, and so it's not yet useful to participate in this experiment.

Previous Releases

For information on prior major and minor releases, see their changelogs:

v1.8.2

24 Apr 10:26
232035b
Compare
Choose a tag to compare

1.8.2 (April 24, 2024)

BUG FIXES:

  • terraform apply: Prevent panic when a provider erroneously provides unknown values. (#35048)
  • terraform plan: Replace panic with error message when self-referencing resources and data sources from the count and for_each meta attributes. (#35047)
  • terraform test: Restore TF_ENV_* variables being made available to testing modules. (#35014)
  • terraform test: Prevent crash when referencing local variables within overridden modules. (#35030)

ENHANCEMENTS:

  • Improved performance by removing unneeded additional computation for a disabled experimental feature. (#35066)

OTHER CHANGES:

  • Update all references to Terraform Cloud to refer to HCP Terraform, the service's new name. This only affects display text; the cloud block and environment variables like TF_CLOUD_ORGANIZATION remain unchanged. (#35050)

NOTE:

Starting with this release, we are including a copy of our license file in all packaged versions of our releases, such as the release .zip files. If you are consuming these files directly and would prefer to extract the one terraform file instead of extracting everything, you need to add an extra argument specifying the file to extract, like this:

unzip terraform_1.8.2_linux_amd64.zip terraform

v1.8.1

17 Apr 10:13
99a5bb2
Compare
Choose a tag to compare

1.8.1 (April 17, 2024)

BUG FIXES:

  • Fix crash in terraform plan when referencing a module output that does not exist within the try(...) function. (#34985)
  • Fix crash in terraform apply when referencing a module with no planned changes. (#34985)
  • moved block: Fix crash when move targets a module which no longer exists. (#34986)
  • import block: Fix crash when generating configuration for resources with complex sensitive attributes. (#34996)
  • Plan renderer: Correctly render strings that begin with JSON compatible text but don't end with it. (#34959)