Skip to content

Commit d814e94

Browse files
committed
feat: increase terraform minor version to 1.3.10
1 parent e732bcd commit d814e94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ ENV DEFAULT_TERRAFORM_VERSION=1.5.7
125125

126126
# In the official Atlantis image, we only have the latest of each Terraform version.
127127
# Each binary is about 80 MB so we limit it to the 4 latest minor releases or fewer
128-
RUN AVAILABLE_TERRAFORM_VERSIONS="1.2.9 1.3.9 1.4.6 ${DEFAULT_TERRAFORM_VERSION}" && \
128+
RUN AVAILABLE_TERRAFORM_VERSIONS="1.2.9 1.3.10 1.4.6 ${DEFAULT_TERRAFORM_VERSION}" && \
129129
case "${TARGETPLATFORM}" in \
130130
"linux/amd64") TERRAFORM_ARCH=amd64 ;; \
131131
"linux/arm64") TERRAFORM_ARCH=arm64 ;; \

server/core/terraform/terraform_client_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ terraform {
392392
"<= 1.0": "1.0.0",
393393
// cannot use ~> 1.3 or ~> 1.0 since that is a moving target since it will always
394394
// resolve to the latest terraform 1.x
395-
"~> 1.3.0": "1.3.9",
395+
"~> 1.3.0": "1.3.10",
396396
}
397397

398398
type testCase struct {

0 commit comments

Comments
 (0)