Skip to content

Commit

Permalink
Upgrade terraform to v0.13.7. (#470)
Browse files Browse the repository at this point in the history
This inbetween version is required as it introduces the provider config
(see verisons.tf).
  • Loading branch information
ensonic authored Dec 4, 2024
1 parent bd7aaac commit 34fa8ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ terraform {
bucket = "${TERRAFORM_GCS_BUCKET}"
prefix = "${TERRAFORM_GCS_PREFIX}"
}
experiments = [variable_validation]
}
EOF
else
Expand Down
4 changes: 2 additions & 2 deletions non_module_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def _non_module_deps_impl(ctx):
http_archive(
name = "hashicorp_terraform",
urls = [
"https://releases.hashicorp.com/terraform/0.12.31/terraform_0.12.31_linux_amd64.zip",
"https://releases.hashicorp.com/terraform/0.13.7/terraform_0.13.7_linux_amd64.zip",
],
sha256 = "e5eeba803bc7d8d0cae7ef04ba7c3541c0abd8f9e934a5e3297bf738b31c5c6d",
sha256 = "4a52886e019b4fdad2439da5ff43388bbcc6cce9784fde32c53dcd0e28ca9957",
build_file = "//third_party:terraform.BUILD",
)
http_archive(
Expand Down
8 changes: 8 additions & 0 deletions src/bootstrap/cloud/terraform/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
}

0 comments on commit 34fa8ed

Please sign in to comment.