Skip to content

Commit b88dcc3

Browse files
author
Hetzner Cloud Bot
committed
chore(main): release v1.58.0
1 parent 49e6dd7 commit b88dcc3

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## [v1.58.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.58.0)
4+
5+
### Breaking Change for the *Storage Box* resource
6+
7+
Previously the `hcloud_storage_box` resource "hid" any changes to the `ssh_keys` attribute to avoid accidentally deleting the Storage Box (SSH Keys can not be changed through the API after the Storage Box is created).
8+
9+
This is changed in this release, we now mark the resource as "requires replacement" if the SSH Keys are changed. If you want to ignore changes and keep the previous behaviour, please add the attribute to [`lifecycle.ignore_changes`](https://developer.hashicorp.com/terraform/language/meta-arguments/lifecycle#ignore_changes):
10+
11+
```terraform
12+
resource "hcloud_storage_box" "example" {
13+
// Other attributes
14+
15+
ssh_keys = [ "..." ]
16+
lifecycle {
17+
ignore_changes = [ ssh_keys ]
18+
}
19+
}
20+
```
21+
22+
We are releasing this breaking change in a minor version as the *Storage Box support* is [marked as experimental](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1285).
23+
24+
### Features
25+
26+
- drop support for OpenTofu v1.8
27+
- add support for OpenTofu v1.11
28+
- **storage-box**: stop ignoring changes to ssh keys and replace resource instead (#1296)
29+
- deprecate datacenter in primary ips and servers (#1309)
30+
31+
### Bug Fixes
32+
33+
- **storage-box**: run actions serially (#1294)
34+
- **zone**: using variable for primary nameservers causes error (#1306)
35+
- **storage-box**: retry snapshot+subaccount create when locked (#1307)
36+
337
## [v1.57.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.57.0)
438

539
### Storage Box API Experimental

0 commit comments

Comments
 (0)