-
Notifications
You must be signed in to change notification settings - Fork 903
feat!: update terraform to version 1.6.x, relax max version constraint #12027
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
170f0da
c35c9ff
a2f3b77
6bb145f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,7 @@ RUN apk add --no-cache \ | |
# Terraform was disabled in the edge repo due to a build issue. | ||
# https://gitlab.alpinelinux.org/alpine/aports/-/commit/f3e263d94cfac02d594bef83790c280e045eba35 | ||
# Using wget for now. Note that busybox unzip doesn't support streaming. | ||
# | ||
# WARNING: Do not update to 1.6.x, as it is the first release licensed under BSL instead of MPL. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We're OK with this from a legal standpoint? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah we're good |
||
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.5.7/terraform_1.5.7_linux_${ARCH}.zip" && \ | ||
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" && \ | ||
busybox unzip /tmp/terraform.zip -d /usr/local/bin && \ | ||
rm -f /tmp/terraform.zip && \ | ||
chmod +x /usr/local/bin/terraform && \ | ||
|
Uh oh!
There was an error while loading. Please reload this page.