Skip to content

chore: update terraform version in install.sh #12856

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

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: update terraform version in install.sh
  • Loading branch information
coadler committed Apr 2, 2024
commit c0cc6124c92d5c34a84bfa8885a64e5312e2842b
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ EOF
}

main() {
TERRAFORM_VERSION="1.3.4"
TERRAFORM_VERSION="1.6.6"

if [ "${TRACE-}" ]; then
set -x
Expand Down
1 change: 1 addition & 0 deletions provisioner/terraform/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ var (
// TerraformVersion is the version of Terraform used internally
// when Terraform is not available on the system.
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
// NOTE: Keep this in sync with the version in install.sh.
TerraformVersion = version.Must(version.NewVersion("1.6.6"))

minTerraformVersion = version.Must(version.NewVersion("1.1.0"))
Expand Down