Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/quick-start-advanced/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GEODESIC_OS=debian
# https://atmos.tools/
# https://github.com/cloudposse/atmos
# https://github.com/cloudposse/atmos/releases
ARG ATMOS_VERSION=1.162.0
ARG ATMOS_VERSION=1.162.1

# Terraform: https://github.com/hashicorp/terraform/releases
ARG TF_VERSION=1.5.7
Expand Down
16 changes: 16 additions & 0 deletions internal/exec/terraform_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,22 @@ func needProcessTemplatesAndYamlFunctions(command string) bool {
"destroy",
"generate",
"output",
"shell",
"write",
"force-unlock",
"import",
"refresh",
"show",
"taint",
"untaint",
"validate",
"state list",
"state mv",
"state pull",
"state push",
"state replace-provider",
"state rm",
"state show",
}
return u.SliceContainsString(commandsThatNeedFuncProcessing, command)
}
2 changes: 1 addition & 1 deletion website/docs/integrations/atlantis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ on:
branches: [ main ]

env:
ATMOS_VERSION: 1.162.0
ATMOS_VERSION: 1.162.1
ATMOS_CLI_CONFIG_PATH: ./

jobs:
Expand Down
Loading