Recommended update for terraform
| Announcement ID: | SUSE-RU-2023:1865-1 |
|---|---|
| Rating: | moderate |
| References: | |
| Affected Products: |
|
An update that contains two features and has one fix can now be installed.
Description:
This update for terraform fixes the following issues:
- Update to 0.13.4 (bsc#1177421, jsc#ECO-2766, jsc#PM-2215) UPGRADE NOTES:
- The built-in vendor (third-party) provisioners, which include
habitat,puppet,chef, andsalt-masterlessare now deprecated and will be removed in a future version of Terraform. - Deprecated interpolation-only expressions are detected in more contexts in addition
to resources and provider configurations. Module calls, data sources, outputs, and
locals are now also covered. Terraform also detects interpolation-only expressions
in complex values such as lists and objects. An expression like
"${foo}"should be rewritten as justfoo. BUG FIXES: - command: Include schemas from required but unused providers in the output of
terraform providers schema. This allows development tools such as the Terraform language server to offer autocompletion for the first resource for a given provider. - core: create_before_destroy status is now updated in the state during refresh
- core: data sources using
depends_on, either directly or through their modules, are no longer are forced to wait until apply by other planned data source reads - from 0.13.3 BUG FIXES:
- build: fix crash with terraform binary on openBSD
- core: prevent create_before_destroy cycles by not connecting module close nodes to resource instance destroy nodes
- core: fix error where plan action changes from CreateThenDelete to DeleteThenCreate
- core: fix Cycle when create_before_destroy status wasn't checked from state
- core: fix "inconsistent final plan" error when changing the number of referenced resources to 0
- states/remote: fix
state push -forceto work for all backends - from 0.13.2 NEW FEATURES:
- Network-based Mirrors for Provider Installation: As an addition to the existing capability of "mirroring" providers into the local filesystem, a network mirror allows publishing copies of providers on an HTTP server and using that as an alternative source for provider packages, for situations where directly accessing the origin registries is impossible or undesirable. ENHANCEMENTS:
- backend/http: add support for configuration by environment variable.
- command: Add support for provider redirects to
0.13upgrade. If a provider in the Terraform Registry has moved to a new namespace, the0.13upgradesubcommand now detects this and follows the redirect where possible. - command: Improve
initerror diagnostics when encountering what appears to be an in-house provider required by a pre-0.13 state file. Terraform will now display suggestedterraform state replace-providercommands which will fix this specific problem. BUG FIXES: - command: Warn instead of error when the
outputsubcommand with no arguments results in no outputs. This aligns the UI to match the 0 exit code in this situation, which is notable but not necessarily an error. - terraform: Fix crashing bug when reading data sources during plan with blocks backed by objects, not collections
- terraform: Fix bug where variables values were asked for twice on the command line and provider input values were asked for but not saved
- from 0.13.1 ENHANCEMENTS:
- config:
cidrsubnetandcidrhostnow support address extensions of more than 32 bits (#25517) - cli: The directories that Terraform searches by default for provider plugins can now be symlinks to directories elsewhere. (This applies only to the top-level directory, not to nested directories inside it.) (#25692)
- backend/s3: simplified mock handling and assume role testing (#25903)
- backend/s3: support for appending data to the User-Agent request header with the TF_APPEND_USER_AGENT environment variable (#25903) BUG FIXES:
- config: Override files containing
moduleblocks can now override the specialprovidersargument. (#25496) - cli: The state lock will now be unlocked consistently across both the local and remote backends in the
terraform consoleandterraform importcommands. (#25454) - cli: The
-targetoption toterraform planandterraform applynow correctly handles addresses containing module instance indexes. (#25760) - cli:
terraform state mvcan now move the last resource from a module without panicking. (#25523) - cli: If the output of
terraform versioncontains an outdated version notice, this is now printed after the version number and not before. (#25811) - command: Prevent creation of workspaces with invalid names via the
TF_WORKSPACEenvironment variable, and allow any existing invalid workspaces to be deleted. (#25262) - command: Fix error when multiple
-no-colorflags are set on the command line. (#25847) - command: Fix backend config override validation, allowing the use of
-backend-configoverride files with the enhanced remote backend. (#25960) - core: State snapshots now use a consistent ordering for resources that have the same name across different modules. Previously the ordering was undefined. (#25498)
- core: A
dynamicblock producing an unknown number of blocks will no longer incorrectly produce the error "Provider produced inconsistent final plan" when the block type is backed by a set of objects. (#25662) - core: Terraform will now silently drop attributes that appear in the state but are not present in the corresponding resource type schema, on the assumption that those attributes existed in a previous version of the provider and have now been removed. (#25779)
- core: The state upgrade logic for handling unqualified provider addresses from Terraform v0.11 and earlier
will no longer panic when it encounters references to the built-in
terraformprovider. (#25861) - internal: Clean up provider package download temporary files after installing. (#25990)
- terraform: Evaluate module call arguments for
terraform importeven if defaults are given for input variables (#25890) - terraform: Fix misleading Terraform
required_versionconstraint diagnostics when multiplerequired_versionsettings exist in a single module (#25898) - from 0.13.0 NEW FEATURES:
countandfor_eachfor modules: Similar to the arguments of the same name inresourceanddatablocks, these create multiple instances of a module from a singlemoduleblock. (#24461)depends_onfor modules: Modules can now use thedepends_onargument to ensure that all module resource changes will be applied after any changes to thedepends_ontargets have been applied. (#25005)- Automatic installation of third-party providers: Terraform now supports a decentralized namespace for providers, allowing for automatic installation of community providers from third-party namespaces in the public registry and from private registries. (More details will be added about this prior to release.)
- Custom validation rules for input variables: A new
validationblock type insidevariableblocks allows module authors to define validation rules at the public interface into a module, so that errors in the calling configuration can be reported in the caller's context rather than inside the implementation details of the module. (#25054) - New Kubernetes remote state storage backend: This backend stores state snapshots as Kubernetes secrets. (#19525) BREAKING CHANGES:
- As part of introducing a new heirarchical namespace for providers, Terraform now requires an explicit
sourcespecification for any provider that is not in the "hashicorp" namespace in the main public registry. (#24477) For more information, including information on the automatic upgrade process, refer to the v0.13 upgrade guide. terraform import: the previously-deprecated-provideroption is now removed. (#24090) To specify a non-default provider configuration for import, add theprovidermeta-argument to the targetresourceblock.- config: Inside
provisionerblocks that havewhen = destroyset, and inside anyconnectionblocks that are used by suchprovisionerblocks, it is no longer valid to refer to any objects other thanself,count, oreach. (This was previously deprecated in a v0.12 minor release.) (#24083) If you are usingnull_resourceto define provisioners not attached to a real resource, include any values your provisioners need in thetriggersmap and change the provisioner configuration to refer to those values viaself.triggers. - configs: At most one
terraformrequired_providersblock is permitted per module (#24763) If you previously had multiplerequired_providersblocks in the same module, consolidate their requirements together into a single block. - The official MacOS builds of Terraform CLI are no longer compatible with Mac OS 10.10 Yosemite; Terraform now requires at least Mac OS 10.11 El Capitan. Terraform 0.13 is the last major release that will support 10.11 El Capitan, so if you are upgrading your OS we recommend upgrading to Mac OS 10.12 Sierra or later.
- The official FreeBSD builds of Terraform CLI are no longer compatible with FreeBSD 10.x, which has reached end-of-life. Terraform now requires FreeBSD 11.2 or later.
- backend/oss: The TableStore schema now requires a primary key named
LockIDof typeString. (#24149) - backend/s3: The previously-deprecated
lock_table,skip_get_ec2_platforms, andskip_requesting_account_idarguments are now removed. (#25134) - backend/s3: The credential source preference order now considers EC2 instance profile credentials as lower priority than shared configuration, web identity, and ECS role credentials. (#25134)
- backend/s3: The
AWS_METADATA_TIMEOUTenvironment variable is no longer used. The timeout is now fixed at one second with two retries. (#25134) NOTES: - The
terraform planandterraform applycommands will now detect and report changes to root module outputs as needing to be applied even if there are no resource changes in the plan. This is an improvement in behavior for most users, since it will now be possible to changeoutputblocks and useterraform applyto apply those changes. If you have a configuration where a root module output value is changing for every plan (for example, by referring to an unstable data source), you will need to remove or change that output value in order to allow convergence on an empty plan. Otherwise, each new plan will propose more changes. - Terraform CLI now supports TLS 1.3 and supports Ed25519 certificates when making outgoing connections to remote TLS servers. While both of these changes are backwards compatible in principle, certain legacy TLS server implementations can reportedly encounter problems when attempting to negotiate TLS 1.3. (These changes affects only requests made by Terraform CLI itself, such as to module registries or backends. Provider plugins have separate TLS implementations that will gain these features on a separate release schedule.)
- On Unix systems where
use-vcis set inresolv.conf, Terraform will now use TCP for DNS resolution. We don't expect this to cause any problem for most users, but if you find you are seeing DNS resolution failures after upgrading please verify that you can either reach your configured nameservers using TCP or that your resolver configuration does not include theuse-vcdirective. - The
terraform 0.12upgradecommand is no longer available. (#24403) To upgrade from Terraform v0.11, first upgrade to the latest v0.12 release and then upgrade to v0.13 from there. ENHANCEMENTS: - config:
templatefilefunction will now return a helpful error message if a given variable has an invalid name, rather than relying on a syntax error in the template parsing itself. (#24184) - config: The configuration language now uses Unicode 12.0 character tables for certain Unicode-version-sensitive
operations on strings, such as the
upperandlowerfunctions. Those working with strings containing new characters introduced since Unicode 9.0 may see small differences in behavior as a result of these table updates. - config: The new
sumfunction takes a list or set of numbers and returns the sum of all elements. (#24666) - config: Modules authored by the same vendor as the main provider they use can now pass metadata to the provider to allow for instrumentation and analytics. (#22583)
- cli: The
terraform planandterraform applycommands now recognize changes to root module outputs as side-effects to be approved and applied. This means you can apply root module output changes using the normal plan and apply workflow. (#25047)- cli: When installing providers from the Terraform Registry, Terraform will verify the trust signature for partner providers, and allow for self-signed community providers. (#24617)
- cli:
terraform initwill display detailed trust signature information when installing providers from the Terraform Registry and other provider registries. (#24932) - cli: It is now possible to optionally specify explicitly which installation methods can be used for different providers in the CLI configuration, such as forcing a particular provider to be loaded from a particular directory on local disk instead of consulting its origin provider registry. (#24728)
- cli: The new
terraform state replace-providersubcommand allows changing the selected provider for existing resource instances in the Terraform state. (#24523) - cli: The new
terraform providers mirrorsubcommand can automatically construct or update a local filesystem mirror directory containing the providers required for the current configuration. (#25084) - cli:
terraform version -jsonnow produces machine-readable version information. (#25252) - cli:
terraform importcan now work with provider configurations containing references to other objects, as long as the data in question is already known in the current state. (#25420) - cli: The
terraform state rmcommand will now exit with status code 1 if the given resource address does not match any resource instances. (#22300) - cli: The
terraform logincommand now requires the full word "yes" to confirm, rather than just "y", for consistency with Terraform's other interactive prompts. (#25379) - core: Several of Terraform's graph operations are now better optimized to support configurations with highly-connected graphs. (#23811)
- backend/remote: Now supports
terraform state push -force. (#24696) - backend/remote: Can now accept
-targetoptions when creating a plan using remote operations, if supported by the target server. (Server-side support for this in Terraform Cloud and Terraform Enterprise will follow in forthcoming releases of each.) (#24834) - backend/azurerm: Now uses the Giovanni Storage SDK to communicate with Azure. (#24669)
- backend/s3: The backend will now always consult the shared configuration file, even if the
AWS_SDK_LOAD_CONFIGenvironment variable isn't set. That environment variable is now ignored. (#25134) - backend/s3: Region validation now automatically supports the new
af-south-1(Africa (Cape Town)) region. (#24744) For AWS operations to work in the new region, you must explicitly enable it as described in AWS General Reference: Enabling a Region. If you haven't enabled the region, the Terraform S3 Backend will returnInvalidClientTokenIderrors during credential validation. - backend/s3: A
~/prefix in theshared_credentials_fileargument is now expanded to the current user's home directory. (#25134) - backend/s3: The backend has a number of new options for customizing the "assume role" behavior, including controlling the lifetime and access policy of temporary credentials. (#25134)
- backend/swift: The authentication options match those of the OpenStack provider. (#23510) BUG FIXES:
- config: The
jsonencodefunction can now correctly encode a single null value as the JSON expressionnull. (#25078) - config: The
mapfunction no longer crashes when incorrectly given a non-string key. (#24277) - config: The
substrfunction now correctly returns a zero-length string when given a length of zero, rather than ignoring that argument entirely. (#24318) - config:
ceil(1/0)andfloor(1/0)(that is, an infinity as an argument) now return another infinity with the same sign, rather than just a large integer. (#21463) - config: The
rsadecryptfunction now supports the OpenSSH RSA key format. (#25112) - config: The
mergefunction now returns more precise type information, making it usable for values passed tofor_each, and will no longer crash if all of the given maps are empty. (#24032), (#25303) - vendor: The various set-manipulation functions, like
setunion, will no longer panic if given an unknown set value (#25318) - config: Fixed a crash with incorrect syntax in
.tf.jsonand.tfvars.jsonfiles. (#24650) - config: The function argument expansion syntax
...no longer incorrectly fails with "Invalid expanding argument value" in situations where the expanding argument's type will not be known until the apply phase. (#25216) - config: Variable
validationblock error message checks no longer fail when non-ASCII characters are present. (#25144) - cli: The
terraform plancommand (and the implied plan run byterraform applywith no arguments) will now print any warnings that were generated even if there are no changes to be made. (#24095) - cli:
terraform state mvnow correctly records the resource's use of eithercountorfor_eachbased on the given target address. (#24254) - cli: When using the
TF_CLI_CONFIG_FILEenvironment variable to override where Terraform looks for CLI configuration, Terraform will now ignore the default CLI configuration directory as well as the default CLI configuration file. (#24728) - cli: The
terraform logincommand in OAuth2 mode now implements the PKCE OAuth 2 extension more correctly. Previously it was not compliant with all of the details of the specification. (#24858) - cli: Fixed a potential crash when the
HOMEenvironment variable isn't set, causing the native service credentials store to benil. (#25110) - command/fmt: Error messages will now include source code snippets where possible. (#24471)
- command/apply:
terraform applywill no longer silently exit when given an absolute path to a saved plan file on Windows. (#25233) - command/init:
terraform initwill now produce an explicit error message if given a non-directory path for its configuration directory argument, and if a-backend-configfile has a syntax error. Previously these were silently ignored. (#25300), (#25411) - command/console: (#25442)
- command/import: The
importcommand will now properly attach the configured provider for the target resource based on the configuration, making the-providercommand line option unnecessary. (#22862) - command/import: The
-allow-missing-configoption now works correctly. It was inadvertently disabled as part of v0.12 refactoring. (#25352) - command/show: Resource addresses are now consistently formatted between the plan and prior state
in the
-jsonoutput. (#24256) - core: Fixed a crash related to an unsafe concurrent read and write of a map data structure. (#24599)
- core: Instances are now destroyed only using their stored state, without re-evaluating configuration. This avoids a number of dependency cycle problems when "delete" actions are included in a plan. (#24083)
- provider/terraform: The
terraform_remote_statedata source will no longer attempt to "configure" the selected backend during validation, which means backends will not try to perform remote actions such as verifying credentials duringterraform validate. Local validation still applies in all cases, and the configuration step will still occur prior to actually reading the remote state in a normal plan/apply operation. (#24887) - backend/remote: Backend will no longer crash if the user cancels backend initialization at an inopportune time, or if there is a connection error. (#25135) (#25341)
- backend/azurerm: The backend will now create a Azure storage snapshot of the previous Terraform state snapshot before writing a new one. (#24069)
- backend/s3: Various other minor authentication-related fixes previously made in the AWS provider. (#25134)
- backend/oss: Now allows locking of multiple different state files. (#24149)
- provisioner/remote-exec: The provisioner will now return an explicit error if the
hostconnection argument is an empty string. Previously it would repeatedly attempt to resolve an empty hostname until timeout. (#24080) - provisioner/chef: The provisioner will now gracefully handle non-failure (RFC062) exit codes returned from Chef. (#19155)
- provisioner/habitat: The provisioner will no longer generate
user.tomlwith world-readable permissions. (#24321) - communicator/winrm: Support a connection timeout for WinRM
connectionblocks. Previously this argument worked for SSH only. (#25350) EXPERIMENTS: - This release concludes the
variable_validationexperiment that was started in Terraform v0.12.20. If you were participating in the experiment, you should remove the experiment opt-in from your configuration as part of upgrading to Terraform 0.13. The experiment received only feedback that can be addressed with backward-compatible future enhancements, so we've included it into this release as stable with no changes to its original design so far. We'll consider additional features related to custom validation in future releases after seeing how it's used in real-world modules. - from 0.12.29 BUG FIXES:
- core: core: Prevent quadratic memory usage with large numbers of instances by not storing the complete resource state in each instance (#25633)
- from 0.12.28 BUG FIXES:
- build: build the 0.12 version of Terraform with Go 1.12.13, rather than 0.13 Terraform's 1.14.2 (#25386)
- from 0.12.27 BUG FIXES:
- backend/remote: fix panic when there's a connection error to the remote backend (#25341)
- Bump mininum Go API version to 1.14
-
Cherry-pick upstream patch to fix build with Go 1.15
-
update to 0.12.26 ENHANCEMENTS:
- backend/remote: Can now accept -target options when creating a plan using remote operations, if supported by the target server. (Server-side support for this in Terraform Cloud and Terraform Enterprise will follow in forthcoming releases of each.) (#24834)
-
cli: A special new lifecycle mode for provider plugins where they are assumed to be controlled by an external process outside of Terraform. This is for automated provider plugin testing only, and is not an end-user feature. (#24674)
-
update to 0.12.25: NOTES:
- backend/s3: Region validation now automatically supports the new af-south-1 (Africa (Cape Town)) region. ENHANCEMENTS:
- backend/s3: Support automatic region validation for af-south-1 (#24744)
- backend/remote: Add support for force push to remote backend (#24884) BUG FIXES:
- core: Destroy provisioners should not evaluate for_each expressions (#24163)
-
core: Fix races in GetVariableValue (#24599)
-
Update to 0.12.24 BUG FIXES:
- command/login: Fix bug when using terraform login on Windows (#24397)
-
registry: Fix panic when server is unreachable (#24411)
-
Update to 0.12.23 BUG FIXES:
- cli: Fix wrong version returned by
terraform version - Update to 0.12.22 ENHANCEMENTS:
- registry: Add configurable retries for module and provider discovery requests to the remote registry
- registry: Add configurable request timeout for the remote registry client BUG FIXES:
- cli: Fix terraform state mv to correctly set the resource each mode based on the target address
-
cli: The
terraform plancommand (and the implied plan run byterraform applywith no arguments) will now print any warnings that were generated even if there are no changes to be made. -
Update to 0.12.21 NEW FEATURES:
- backend/cos: New backend "cos", supporting using Tencent Cloud Storage as a remote backend.
- command/login: Enable "terraform login" and add support for UI-generated tokens
- command/logout: Add "terraform logout" command to remove local credentials ENHANCEMENTS:
- command/workspace delete: release lock after workspace removal warning
- lang/funcs: add
setsubtractfunction BUG FIXES: - command/state show: Fix an issue when a resource has a non-default provider configured
- backend/remote-state: Fix issues where lingering lock files remained when deleting non-empty workspaces
- command/import: Release lock if initialization error occurs on import
-
terraform: Fix panic when using
for_eachwith a set containingnullvalues -
Run spec-cleaner
- Update to 0.12.20 ENHANCEMENTS:
- config: New built-in functions
tryandcanare intended to ease working with data structures whose shape isn't known statically. - config: New, optional syntax for [
required_providers] BUG FIXES: - command/show: Fix an issue with show and aliased providers
- core: Always clean up empty resources before empty modules
- internal/modsdir/manifest: Fix CLI issue with Windows machines EXPERIMENTS:
- This release includes an opt-in experiment for [custom validation rules on module variables]
The feature is not yet finalized and is subject to breaking changes even in minor releases, but we're introducing it here in order to solicit feedback from module developers about which use-cases it is meeting, any use-cases it isn't meeting, and any situations where things feel harder to express than they might be.
Due to the experimental nature of this feature, we do not recommend using it in "production" modules yet and we require an explicit experimental feature opt-in of
variable_validation. Depending on what feedback we receive, the design of this experimental feature may change significantly in future versions without an automatic upgrade path.
Patch Instructions:
To install this SUSE update use the SUSE recommended
installation methods like YaST online_update or "zypper patch".
Alternatively you can run the command listed for your product:
-
Public Cloud Module 15-SP1
zypper in -t patch SUSE-SLE-Module-Public-Cloud-15-SP1-2023-1865=1
Package List:
-
Public Cloud Module 15-SP1 (aarch64 ppc64le s390x x86_64)
- terraform-0.13.4-150100.3.9.3