Skip to content

v1.536.0

Latest
Compare
Choose a tag to compare
@cloudposse-releaser cloudposse-releaser released this 04 Jan 17:40
· 13 commits to refs/heads/main since this release
309b857
fix: Replace deprecated splat expression with [*] for Terraform 1.5.… @sushmithakumar (#7) ## Terraform 0.12.0+ Splat Operator Updates ## What Updated Terraform configuration to replace legacy splat syntax

(resource.*.attribute)

with modern bracket-based expressions (resource[*].attribute).
Incorporated for expressions where applicable to improve flexibility and readability.
No functional changes to infrastructure; these updates are syntax improvements.

Why

Aligns with Terraform 0.12.0+ enhancements and first-class expression support.
Improves readability and maintainability of Terraform code.
Prevents potential deprecation warnings by replacing outdated syntax.

References

Terraform v0.12.0 Upgrade Guide

Summary by CodeRabbit

  • Chores
    • Updated the method of constructing service_name_set in the configuration for improved clarity.