Skip to content

Commit 75da89e

Browse files
authored
Merge pull request #801 from chenrui333/tf-0.12.10
tf: v0.12.10
2 parents 86a56a3 + 38aa2b9 commit 75da89e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# We do this instead of setting --default-tf-version because setting
2222
# that flag starts the download asynchronously so we'd have a race
2323
# condition.
24-
TERRAFORM_VERSION: 0.12.9
24+
TERRAFORM_VERSION: 0.12.10
2525
steps:
2626
- checkout
2727
- run: make build-service

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM runatlantis/atlantis-base:v3.1
33
LABEL authors="Anubhav Mishra, Luke Kysow"
44

55
# install terraform binaries
6-
ENV DEFAULT_TERRAFORM_VERSION=0.12.9
6+
ENV DEFAULT_TERRAFORM_VERSION=0.12.10
77

88
# In the official Atlantis image we only have the latest of each Terrafrom version.
99
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.14 ${DEFAULT_TERRAFORM_VERSION}" && \

testing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM circleci/golang:1.13
66

77
# Install Terraform
8-
ENV TERRAFORM_VERSION=0.12.9
8+
ENV TERRAFORM_VERSION=0.12.10
99
RUN curl -LOks https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
1010
sudo mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
1111
sudo unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \

0 commit comments

Comments
 (0)