2.7 KiB
2.7 KiB
0.14.0 (Unreleased)
ENHANCEMENTS:
- backend/consul: Split state into chunks when outgrowing the limit of the Consul KV store. This allows storing state larger than the Consul 512KB limit. [GH-25856]
- cli: A new global command line option
-chdir=...
, placed before the selected subcommand, instructs Terraform to switch to a different working directory before executing the subcommand. This is similar to switching to a new directory withcd
before running Terraform, but it avoids changing the state of the calling shell. (#26087) - core:
terraform plan
no longer uses a separate refresh phase, all resources are updated on-demand during planning [GH-26270] - lang: Added
alltrue
function, which returnstrue
if all elements in the given collection aretrue
. This is primarily intended to make it easier to write variable validation conditions which operate on collections. [GH-25656] terraform plan
andterraform apply
: Added an experimental concise diff renderer. By default, Terraform plans now hide most unchanged fields, only displaying the most relevant changes and some identifying context. This experiment can be disabled by setting aTF_X_CONCISE_DIFF
environment variable to0
. (#26187)terraform login
: Added support for OAuth2 application scopes. [GH-26239]terraform console
: Now has distinct rendering of lists, sets, and tuples, and correctly renders objects withnull
attribute values. [GH-26189]
BREAKING CHANGES:
- configs: The
version
argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. (#26135)
BUG FIXES:
- backend/consul: Fix bug which prevented state locking when path has trailing
/
[GH-25842] - build: fix crash with terraform binary on openBSD [#26249]
- command/clistate: return an error on a state unlock failure [#25729]
- configs: Report an error when provider configuration attributes are incorrectly added to a
required_providers
object. [GH-26184] - lang/funcs: fix panic when element() is called with a negative offset (#26079)
- states/remote: fix
state push -force
to work for all backends (#26190)
Previous Releases
For information on prior major releases, see their changelogs: