Skip to content

v1.3.4

Compare
Choose a tag to compare
@cloudpossebot cloudpossebot released this 03 Nov 22:58
· 264 commits to main since this release
d1f3e94

馃殌 Enhancements

Add `--from-plan` flag to terraform apply/deploy commands. Add `describe config` CLI command @aknysh (#71)

what

  • Add --from-plan flag to terraform apply/deploy commands
  • Add describe config CLI command

why

  • Allow using terraform planfile (previously generated with atmos terraform plan) in atmos terraform apply/deploy commands
atmos terraform plan test/test-component-override -s tenant1/ue2/dev
atmos terraform apply test/test-component-override -s tenant1-ue2-dev --from-plan
atmos terraform deploy test/test-component-override -s tenant1-ue2-dev --from-plan
  • describe config command shows CLI configuration, processed and deep-merged from these locations
- system dir (`/usr/local/etc/atmos/atmos.yaml` on Linux, `%LOCALAPPDATA%/atmos/atmos.yaml` on Windows)
- home dir (~/.atmos/atmos.yaml)
- `atmos.yaml` in the current directory
atmos describe config -help
atmos describe config

atmos describe config --format=json
atmos describe config --format json
atmos describe config -f=json
atmos describe config -f json

atmos describe config --format=yaml
atmos describe config --format yaml
atmos describe config -f=yaml
atmos describe config -f yaml

references