v1.13.0-alpha20250623
📦 terraformView on GitHub →
✨ 4 features🐛 2 fixes🔧 3 symbols
Summary
This alpha release introduces the new `terraform stacks` CLI command and enhances `terraform test` capabilities regarding variable definitions. It also includes performance fixes and addresses issues with nested module output sensitivity.
Migration Steps
- Users with complex external variables referenced in `terraform test` files may see error diagnostics without an accompanying `variable` definition block within the test file; add the definition block to resolve this.
✨ New Features
- The new command `terraform stacks` exposes some stack operations through the cli. Use `terraform stacks -help` to see available commands.
- The command `terraform rpcapi` is now generally available, exposing certain Terraform operations through an RPC interface compatible with go-plugin.
- In `terraform test`, authors can now specify definitions for external variables referenced within test files directly within the test file itself.
- In `terraform test`, file-level variable blocks can now reference run outputs and other variables.
🐛 Bug Fixes
- Added a missing warning diagnostic that alerts users when child module contains an ignored `cloud` block.
- Nested module outputs could lose sensitivity, even when marked as such in the configuration.