Skip to content

Commit 9df12d8

Browse files
jamestoyergithub-actions[bot]
authored andcommitted
Update Terraform Chocolatey packages
1 parent 9cd48b8 commit 9df12d8

3 files changed

Lines changed: 22 additions & 73 deletions

File tree

terraform/terraform.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"1.13": "1.13.5",
1616
"1.14": "1.14.9",
1717
"1.15": "1.15.8",
18-
"1.16": "1.16.0-beta2",
19-
"1.17": "1.17.0-alpha20260729"
18+
"1.16": "1.16.0-rc1",
19+
"1.17": "1.17.0-alpha20260812"
2020
}

terraform/terraform.nuspec

Lines changed: 16 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
66
<id>terraform</id>
77
<title>Terraform</title>
8-
<version>1.16.0-beta2</version>
8+
<version>1.17.0-alpha20260812</version>
99
<authors>HashiCorp</authors>
1010
<owners>James Toyer</owners>
1111
<summary>Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions.</summary>
@@ -22,98 +22,47 @@ The key features of Terraform are:
2222
For more information, see the [introduction section](http://www.terraform.io/intro) of the Terraform website.
2323
</description>
2424
<releaseNotes>
25-
## 1.16.0-beta2 (August 05, 2026)
26-
27-
28-
NEW FEATURES:
29-
30-
* Terraform now stores planned private data for providers, allowing provider-specific state to be preserved across plan and apply. ([#37986](https://github.com/hashicorp/terraform/issues/37986))
31-
32-
* `terraform_data`: The new `store` block can hold ephemeral and sensitive values across plan and apply. ([#38298](https://github.com/hashicorp/terraform/issues/38298))
33-
34-
* Providers can now use nested blocks as computed values ([#38305](https://github.com/hashicorp/terraform/issues/38305))
35-
36-
* import: `import` blocks inside modules are now supported. ([#38352](https://github.com/hashicorp/terraform/issues/38352))
37-
38-
* Terraform is now available as a pre-built binary for Linux s390x (zLinux). ([#38384](https://github.com/hashicorp/terraform/issues/38384))
39-
40-
* Resource action triggers can now use `on_failure` modes of `halt`, `taint`, or `continue`. ([#38722](https://github.com/hashicorp/terraform/issues/38722))
25+
## 1.17.0-alpha20260812 (August 12, 2026)
4126

4227

4328
ENHANCEMENTS:
4429

45-
* state show: The `state show` command can now produce machine-readable output when supplied with the `-json` flag ([#23940](https://github.com/hashicorp/terraform/issues/23940))
46-
47-
* workspace: The `workspace list` command can now produce machine-readable output when supplied with the `-json` flag ([#38397](https://github.com/hashicorp/terraform/issues/38397))
48-
49-
* test: Terraform now reports which resources were left behind when `skip_cleanup` is set. ([#38449](https://github.com/hashicorp/terraform/issues/38449))
50-
51-
* stacks: Action configurations now have access to a `caller` symbol containing the object value of the calling resource. ([#38668](https://github.com/hashicorp/terraform/issues/38668))
52-
53-
* Actions can now use `before_destroy` and `after_destroy` events. ([#38668](https://github.com/hashicorp/terraform/issues/38668))
54-
55-
* cloud: Terraform now displays a summary of policy evaluation outcomes for `plan` and `apply` runs against HCP Terraform. ([#38715](https://github.com/hashicorp/terraform/issues/38715))
56-
57-
* policy: Terraform now resolves policy plugin credentials from the configured cloud or remote backend during `init`, `plan`, and `apply`, rather than requiring the plugin to read credentials itself. ([#38716](https://github.com/hashicorp/terraform/issues/38716))
58-
59-
* graph: The `terraform graph` command can now output graphs in Mermaid format using the `-format=mermaid` flag. ([#38719](https://github.com/hashicorp/terraform/issues/38719))
60-
61-
* Child module outputs with unreferenced deprecated nested attributes no longer return deprecation warnings. ([#38778](https://github.com/hashicorp/terraform/issues/38778))
62-
63-
* Resource `lifecycle` blocks now support `destroy = false` to prevent a resource from being destroyed. ([#38784](https://github.com/hashicorp/terraform/issues/38784))
64-
65-
* The `contains()` function can now test for `null` values. ([#38792](https://github.com/hashicorp/terraform/issues/38792))
66-
67-
* console: The `terraform console` command now accepts an optional `-scope=&lt;module address&gt;` flag, which can be used to evaluate expressions within the scope of a module or a specific module instance. ([#31861](https://github.com/hashicorp/terraform/issues/31861))
68-
69-
* `-invoke` can now be combined with `-target` to specify the calling resource instance when multiple resources trigger the same action. ([#38845](https://github.com/hashicorp/terraform/issues/38845))
70-
71-
* The `terraform stacks` command now automatically infers the target hostname from the local credentials file (`credentials.tfrc.json`) when neither `TF_STACKS_HOSTNAME` nor `TF_CLOUD_HOSTNAME` is set ([#38896](https://github.com/hashicorp/terraform/issues/38896))
30+
* command/init: Enrich log messages with provider versions ([#38918](https://github.com/hashicorp/terraform/issues/38918))
7231

7332

7433
BUG FIXES:
7534

76-
* `import` blocks now correctly respect provider local names. ([#38338](https://github.com/hashicorp/terraform/issues/38338))
77-
78-
* `terraform apply` no longer panics when the plan contains a no-op change for a deposed resource that has `lifecycle.precondition` or `lifecycle.postcondition` blocks. ([#38586](https://github.com/hashicorp/terraform/issues/38586))
79-
80-
* workspace: Terraform now raises an error if an invalid workspace name becomes selected due to out-of-band changes. ([#38594](https://github.com/hashicorp/terraform/issues/38594))
81-
82-
* test: Terraform now raises a warning when a file referenced via the `-filter` flag does not exist. ([#38603](https://github.com/hashicorp/terraform/issues/38603))
83-
84-
* init: Terraform no longer removes locks from the dependency lock file for providers configured as `dev_override`. ([#38634](https://github.com/hashicorp/terraform/issues/38634))
85-
86-
* init: Terraform now warns when unmanaged providers are in use and may impact provider installation. ([#38656](https://github.com/hashicorp/terraform/issues/38656))
87-
88-
* Actions are now invoked with respect to all resource dependencies. ([#38668](https://github.com/hashicorp/terraform/issues/38668))
89-
90-
* Terraform now returns the correct error when an `import` target exists in state but has no corresponding configuration. ([#38782](https://github.com/hashicorp/terraform/issues/38782))
91-
92-
* The `merge()` function no longer panics when passed `null` objects. ([#38792](https://github.com/hashicorp/terraform/issues/38792))
35+
* funcs: pow and log no longer panic when result is not a number ([#38912](https://github.com/hashicorp/terraform/issues/38912))
9336

94-
* Allow underscores in provider source address namespaces, so private registry provider addresses are no longer rejected as invalid ([#38894](https://github.com/hashicorp/terraform/issues/38894))
37+
* ephemeral: Terraform will now use and display diagnostics raised when _renewing_ an ephemeral resource. This may cause warnings to appear that previously were lost. We expect that any error diagnostics that were previously lost would have caused confusing downstream errors, so we do not anticipate this change to be breaking. ([#38989](https://github.com/hashicorp/terraform/issues/38989))
9538

9639

9740
NOTES:
9841

99-
* init: Errors due to incompatible `-upgrade` and `-lockfile=readonly` flags are now raised earlier in the init process. ([#38561](https://github.com/hashicorp/terraform/issues/38561))
42+
* version: JSON output now includes a new `format_version` field, which will enable safer future changes of the command's JSON output format. It is assumed existing tooling ignores unknown fields and therefore this change should not be breaking in itself but we advice consumers to pay attention to `format_version` in future releases and/or use latest version of hashicorp/terraform-json &amp; hashicorp/terraform-exec which does. ([#38930](https://github.com/hashicorp/terraform/issues/38930))
10043

10144

102-
UPGRADE NOTES:
45+
EXPERIMENTS:
10346

104-
* `bastion_host_key` is now correctly applied by provisioners. Review your provisioner configurations to verify the configured key is correct before upgrading. ([#38318](https://github.com/hashicorp/terraform/issues/38318))
47+
Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.
10548

49+
- The experimental "deferred actions" feature, enabled by passing the `-allow-deferral` option to `terraform plan`, permits `count` and `for_each` arguments in `module`, `resource`, and `data` blocks to have unknown values and allows providers to react more flexibly to unknown values.
50+
- `terraform test cleanup`: The experimental `test cleanup` command. In experimental builds of Terraform, a manifest file and state files for each failed cleanup operation during test operations are saved within the `.terraform` local directory. The `test cleanup` command will attempt to clean up the local state files left behind automatically, without requiring manual intervention.
51+
- `terraform test`: `backend` blocks and `skip_cleanup` attributes:
52+
- Test authors can now specify `backend` blocks within `run` blocks in Terraform Test files. Run blocks with `backend` blocks will load state from the specified backend instead of starting from empty state on every execution. This allows test authors to keep long-running test infrastructure alive between test operations, saving time during regular test operations.
53+
- Test authors can now specify `skip_cleanup` attributes within test files and within run blocks. The `skip_cleanup` attribute tells `terraform test` not to clean up state files produced by run blocks with this attribute set to true. The state files for affected run blocks will be written to disk within the `.terraform` directory, where they can then be cleaned up manually using the also experimental `terraform test cleanup` command.
54+
- `terraform query`: The experimental `-policies` flag permits specifying one or more policy set directory paths to evaluate policies against resources discovered by list blocks during a query operation.
10655

10756
## Previous Releases
108-
For more information on previous releases, check out the changelog on [GitHub](https://github.com/hashicorp/terraform/blob/v1.16.0-beta2/CHANGELOG.md).</releaseNotes>
57+
For more information on previous releases, check out the changelog on [GitHub](https://github.com/hashicorp/terraform/blob/v1.17.0-alpha20260812/CHANGELOG.md).</releaseNotes>
10958
<projectUrl>http://www.terraform.io</projectUrl>
11059
<docsUrl>https://www.terraform.io/docs/index.html</docsUrl>
11160
<bugTrackerUrl>https://github.com/hashicorp/terraform/issues</bugTrackerUrl>
11261
<projectSourceUrl>https://github.com/hashicorp/terraform</projectSourceUrl>
11362
<packageSourceUrl>https://github.com/jamestoyer/chocolatey-packages</packageSourceUrl>
11463
<tags>terraform hashicorp</tags>
11564
<copyright>HashiCorp 2015-2024</copyright>
116-
<licenseUrl>https://github.com/hashicorp/terraform/blob/v1.16.0-beta2/LICENSE</licenseUrl>
65+
<licenseUrl>https://github.com/hashicorp/terraform/blob/v1.17.0-alpha20260812/LICENSE</licenseUrl>
11766
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11867
<!-- Important note about https://cdn.rawgit.com: Files are cached permanently after the first request. Use commit URLs when updating the icon. -->
11968
<iconUrl>https://raw.githubusercontent.com/jamestoyer/chocolatey-packages/58ab86c08224c2ba79af2080346c53c1cc440afc/terraform/icons/terraform.png</iconUrl>

terraform/tools/chocolateyInstall.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
$ErrorActionPreference = 'Stop'
22

33
# DO NOT CHANGE THESE MANUALLY. USE update.ps1
4-
$url = 'https://releases.hashicorp.com/terraform/1.16.0-beta2/terraform_1.16.0-beta2_windows_386.zip'
5-
$url64 = 'https://releases.hashicorp.com/terraform/1.16.0-beta2/terraform_1.16.0-beta2_windows_amd64.zip'
6-
$checksum = 'ad46561520b2649cf3e4924631e2dc3a98d40d190dc5924ce8e50bed3d832b64'
7-
$checksum64 = '3f712e0104e537be36f6ef0ebe487c14927023cca6d644ee63af6059d1564e2d'
4+
$url = 'https://releases.hashicorp.com/terraform/1.17.0-alpha20260812/terraform_1.17.0-alpha20260812_windows_386.zip'
5+
$url64 = 'https://releases.hashicorp.com/terraform/1.17.0-alpha20260812/terraform_1.17.0-alpha20260812_windows_amd64.zip'
6+
$checksum = 'fd0dfbc065741c5a31cfc2d180e6056587b2d0ad48c33ab5d8feeed0af2731c3'
7+
$checksum64 = 'e1823cf25a311f9e4dcf0bdc8fc2214d404de8a9657cfad183c3f4f297b2c2e8'
88

99
$unzipLocation = Split-Path -Parent $MyInvocation.MyCommand.Definition
1010

0 commit comments

Comments
 (0)