Skip to content
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

Bump default terraform version to 1.9.0, add all known terraform versions inbetween #21110

Merged
merged 2 commits into from
Jun 29, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
update
purajit committed Jun 27, 2024

Verified

This commit was signed with the committer’s verified signature.
purajit purajit
commit 4d677f4226553be8405b8da117f3f4cae672dcd9
2 changes: 2 additions & 0 deletions docs/notes/2.23.x.md
Original file line number Diff line number Diff line change
@@ -93,6 +93,8 @@ Exported virtualenvs can use Pants-provided Python if a `PythonProvider` backend

#### Terraform

The default version of terraform has been updated from 1.7.1 to 1.9.0.

The `tfsec` linter now works on all supported platforms without extra config.

#### Javascript
2 changes: 1 addition & 1 deletion src/python/pants/backend/terraform/tool.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ class TerraformTool(TemplatedExternalTool):

# TODO: Possibly there should not be a default version, since terraform state is sensitive to
# the version that created it, so you have to be deliberate about the version you select.
default_version = "1.7.1"
default_version = "1.9.0"
default_url_template = (
"https://releases.hashicorp.com/terraform/{version}/terraform_{version}_{platform}.zip"
)