File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 21
21
# We do this instead of setting --default-tf-version because setting
22
22
# that flag starts the download asynchronously so we'd have a race
23
23
# condition.
24
- TERRAFORM_VERSION : 0.12.9
24
+ TERRAFORM_VERSION : 0.12.10
25
25
steps :
26
26
- checkout
27
27
- run : make build-service
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM runatlantis/atlantis-base:v3.1
3
3
LABEL authors="Anubhav Mishra, Luke Kysow"
4
4
5
5
# install terraform binaries
6
- ENV DEFAULT_TERRAFORM_VERSION=0.12.9
6
+ ENV DEFAULT_TERRAFORM_VERSION=0.12.10
7
7
8
8
# In the official Atlantis image we only have the latest of each Terrafrom version.
9
9
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.14 ${DEFAULT_TERRAFORM_VERSION}" && \
Original file line number Diff line number Diff line change 5
5
FROM circleci/golang:1.13
6
6
7
7
# Install Terraform
8
- ENV TERRAFORM_VERSION=0.12.9
8
+ ENV TERRAFORM_VERSION=0.12.10
9
9
RUN curl -LOks https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
10
10
sudo mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
11
11
sudo unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
You can’t perform that action at this time.
0 commit comments