Commit 60a168d 1 parent 6948580 commit 60a168d Copy full SHA for 60a168d
File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
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.1.5
19
+ TERRAFORM_VERSION : 1.1.6
20
20
steps :
21
21
- checkout
22
22
- run : make build-service
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ RUN CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -v -o atlantis .
10
10
FROM ghcr.io/runatlantis/atlantis-base:2021.12.15 AS base
11
11
12
12
# install terraform binaries
13
- ENV DEFAULT_TERRAFORM_VERSION=1.1.5
13
+ ENV DEFAULT_TERRAFORM_VERSION=1.1.6
14
14
15
15
# In the official Atlantis image we only have the latest of each Terraform version.
16
16
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 1.0.11 ${DEFAULT_TERRAFORM_VERSION}" && \
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import (
34
34
)
35
35
36
36
const hashicorpReleasesURL = "https://releases.hashicorp.com"
37
- const terraformVersion = "1.1.5 "
37
+ const terraformVersion = "1.1.6 "
38
38
const ngrokDownloadURL = "https://bin.equinox.io/c/4VmDzA7iaHb"
39
39
const ngrokAPIURL = "localhost:41414" // We hope this isn't used.
40
40
const atlantisPort = 4141
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM golang:1.17
3
3
RUN apt-get update && apt-get install unzip
4
4
5
5
# Install Terraform
6
- ENV TERRAFORM_VERSION=1.1.5
6
+ ENV TERRAFORM_VERSION=1.1.6
7
7
RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \
8
8
wget -nv -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${ARCH}.zip && \
9
9
mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
You can’t perform that action at this time.
0 commit comments