Commit e5d848a 1 parent 63277b9 commit e5d848a Copy full SHA for e5d848a
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 16
16
# We do this instead of setting --default-tf-version because setting
17
17
# that flag starts the download asynchronously so we'd have a race
18
18
# condition.
19
- TERRAFORM_VERSION : 1.0.5
19
+ TERRAFORM_VERSION : 1.0.6
20
20
steps :
21
21
- checkout
22
22
- run : make build-service
Original file line number Diff line number Diff line change 2
2
FROM ghcr.io/runatlantis/atlantis-base:2021.06.22
3
3
4
4
# install terraform binaries
5
- ENV DEFAULT_TERRAFORM_VERSION=1.0.5
5
+ ENV DEFAULT_TERRAFORM_VERSION=1.0.6
6
6
7
7
# In the official Atlantis image we only have the latest of each Terraform version.
8
8
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.15 0.12.31 0.13.7 0.14.11 0.15.5 ${DEFAULT_TERRAFORM_VERSION}" && \
Original file line number Diff line number Diff line change 5
5
FROM circleci/golang:1.17
6
6
7
7
# Install Terraform
8
- ENV TERRAFORM_VERSION=1.0.5
8
+ ENV TERRAFORM_VERSION=1.0.6
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