Skip to main content
atmos.yaml558 B
View on GitHub
# atmos.yaml CLI config
base_path: "./"

components:
terraform:
base_path: "components/terraform"
apply_auto_approve: false
deploy_run_init: true
init_run_reconfigure: true
auto_generate_backend_file: false

stacks:
base_path: "stacks"
included_paths:
- "deploy/**/*"
excluded_paths:
- "**/_defaults.yaml"
name_template: "{{.vars.stage}}"
vendor:
base_path: "./vendor.yaml"

logs:
file: "/dev/stderr"
level: Info

commands:
- name: "test"
description: "Run all tests"
steps:
- atmos vendor pull --everything

Related Documentation