File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 250
250
main () {
251
251
MAINLINE=1
252
252
STABLE=0
253
- TERRAFORM_VERSION=" 1.6.6 "
253
+ TERRAFORM_VERSION=" 1.7.4 "
254
254
255
255
if [ " ${TRACE-} " ]; then
256
256
set -x
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ var (
20
20
// when Terraform is not available on the system.
21
21
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
22
22
// NOTE: Keep this in sync with the version in install.sh.
23
- TerraformVersion = version .Must (version .NewVersion ("1.6.6 " ))
23
+ TerraformVersion = version .Must (version .NewVersion ("1.7.4 " ))
24
24
25
25
minTerraformVersion = version .Must (version .NewVersion ("1.1.0" ))
26
- maxTerraformVersion = version .Must (version .NewVersion ("1.6 .9" )) // use .9 to automatically allow patch releases
26
+ maxTerraformVersion = version .Must (version .NewVersion ("1.7 .9" )) // use .9 to automatically allow patch releases
27
27
28
28
terraformMinorVersionMismatch = xerrors .New ("Terraform binary minor version mismatch." )
29
29
)
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ RUN apk add --no-cache \
10
10
curl \
11
11
wget \
12
12
bash \
13
- git \
13
+ git=2.43.4-r0 \
14
14
openssl \
15
15
openssh-client && \
16
16
addgroup \
@@ -26,7 +26,7 @@ RUN apk add --no-cache \
26
26
# Terraform was disabled in the edge repo due to a build issue.
27
27
# https://gitlab.alpinelinux.org/alpine/aports/-/commit/f3e263d94cfac02d594bef83790c280e045eba35
28
28
# Using wget for now. Note that busybox unzip doesn't support streaming.
29
- RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.6.6 /terraform_1.6.6_linux_ ${ARCH}.zip" && \
29
+ RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.7.4 /terraform_1.7.4_linux_ ${ARCH}.zip" && \
30
30
busybox unzip /tmp/terraform.zip -d /usr/local/bin && \
31
31
rm -f /tmp/terraform.zip && \
32
32
chmod +x /usr/local/bin/terraform && \
You can’t perform that action at this time.
0 commit comments