File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ RUN apt-get update --quiet && apt-get install --yes \
198
198
199
199
# NOTE: In scripts/Dockerfile.base we specifically install Terraform version 1.10.5.
200
200
# Installing the same version here to match.
201
- RUN wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.10.5 /terraform_1.10.5_linux_amd64 .zip" && \
201
+ RUN wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.11.0 /terraform_1.11.0_linux_amd64 .zip" && \
202
202
unzip /tmp/terraform.zip -d /usr/local/bin && \
203
203
rm -f /tmp/terraform.zip && \
204
204
chmod +x /usr/local/bin/terraform && \
Original file line number Diff line number Diff line change 273
273
main () {
274
274
MAINLINE=1
275
275
STABLE=0
276
- TERRAFORM_VERSION=" 1.10.5 "
276
+ TERRAFORM_VERSION=" 1.11.0 "
277
277
278
278
if [ " ${TRACE-} " ]; then
279
279
set -x
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ var (
22
22
// when Terraform is not available on the system.
23
23
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
24
24
// NOTE: Keep this in sync with the version in install.sh.
25
- TerraformVersion = version .Must (version .NewVersion ("1.10.5 " ))
25
+ TerraformVersion = version .Must (version .NewVersion ("1.11.0 " ))
26
26
27
27
minTerraformVersion = version .Must (version .NewVersion ("1.1.0" ))
28
- maxTerraformVersion = version .Must (version .NewVersion ("1.10 .9" )) // use .9 to automatically allow patch releases
28
+ maxTerraformVersion = version .Must (version .NewVersion ("1.11 .9" )) // use .9 to automatically allow patch releases
29
29
30
30
terraformMinorVersionMismatch = xerrors .New ("Terraform binary minor version mismatch." )
31
31
)
Original file line number Diff line number Diff line change @@ -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.10.5 /terraform_1.10.5_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.11.0 /terraform_1.11.0_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