Skip to content

Commit a96e249

Browse files
author
Hetzner Cloud Bot
committed
chore(main): release v1.58.0
1 parent d721b58 commit a96e249

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
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+
30+
### Bug Fixes
31+
32+
- **storage-box**: run actions serially (#1294)
33+
- **zone**: using variable for primary nameservers causes error (#1306)
34+
335
## [v1.57.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.57.0)
436

537
### Storage Box API Experimental

0 commit comments

Comments
 (0)