sisyphi 1.1.39 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1277 @@
1
+ # Changelog
2
+
3
+ ## [v1.62.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.62.0)
4
+
5
+ ### Primary IPs `assignee_type` behavior change
6
+
7
+ The `hcloud_primary_ip` resource will now:
8
+
9
+ - raise a warning if `assignee_type` attribute is configured without `assignee_id` attribute
10
+ - raise an error if `assignee_id` attribute is configured without `assignee_type` attribute
11
+
12
+ As of 1 August 2026, the behavior of the Primary IP `assignee_type` property will change, and will return `unassigned` when the Primary IP is not assigned (when `assignee_id` is `null`). The goal is to eventually assign Primary IPs to other resource types, not only to `server`.
13
+
14
+ See the [changelog](https://docs.hetzner.cloud/changelog#2026-04-27-primary-ips-will-return-unassigned) for more details.
15
+
16
+ In addition, the Primary IP request body `assignee_type` property of the operation [`POST /v1/primary_ips`](https://docs.hetzner.cloud/reference/cloud#tag/primary-ips/create_primary_ip) is now optional. Primary IPs created without `assignee_type` return `server` until 1 August 2026, after this date, its value will be `unassigned`.
17
+
18
+ See the [changelog](https://docs.hetzner.cloud/changelog#2026-04-27-primary-ips-make-assignee_type-optional) for more details.
19
+
20
+ ### Features
21
+
22
+ - **primary-ip**: `assignee_type` attribute is now optional (#1395)
23
+
24
+ ### Bug Fixes
25
+
26
+ - **firewall**: apply_to update removes firewall from state when target resource is not found (#1380)
27
+
28
+ ## [v1.61.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.61.0)
29
+
30
+ ### Available and recommended Server Types have been moved
31
+
32
+ - Data sources `hcloud_datacenter`/`hcloud_datacenters[]`: Attributes `supported_server_type_ids[]` and `available_server_type_ids[]` have been deprecated.
33
+ - Data sources `hcloud_server_type`/`hcloud_server_types[]`: Attributes `locations[].available` and `locations[].recommended` have been added as a replacement for the deprecated datacenter attributes.
34
+
35
+ See the [changelog](https://docs.hetzner.cloud/changelog#2026-04-01-datacenter-deprecations) for more details.
36
+
37
+ ### Features
38
+
39
+ - **server**: implement actions for poweron, poweroff, reset, and reboot (#1342)
40
+ - **datacenter, server_type**: move available and recommended to server_type (#1378)
41
+
42
+ ### Bug Fixes
43
+
44
+ - **primary-ip**: reassigning fails as IP needs to be unassigned first (#1353)
45
+ - **primary-ip**: unassign before deleting a primary ip (#1384)
46
+ - include response correlation id in api error diagnostics (#1386)
47
+
48
+ ## [v1.60.1](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.60.1)
49
+
50
+ ### Bug Fixes
51
+
52
+ - **storage-box**: subaccount name was ignored (#1344)
53
+
54
+ ## [v1.60.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.60.0)
55
+
56
+ ### Features
57
+
58
+ - add `zone_record` resource (#1228)
59
+ - Storage Box support no longer experimental (#1329)
60
+ - **floating-ip**: unassign from server before deleting it (#1335)
61
+
62
+ ## [v1.59.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.59.0)
63
+
64
+ ### Features
65
+
66
+ - add name to Storage Box Subaccount (#1323)
67
+
68
+ ### Bug Fixes
69
+
70
+ - support importing storage box without forced replacement (#1314)
71
+ - panic on nil action in settle actions helper (#1321)
72
+
73
+ ## [v1.58.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.58.0)
74
+
75
+ ### Breaking Change for the *Storage Box* resource
76
+
77
+ Previously the `hcloud_storage_box` resource ignored 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).
78
+
79
+ 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):
80
+
81
+ ```terraform
82
+ resource "hcloud_storage_box" "example" {
83
+ // Other attributes
84
+
85
+ ssh_keys = [ "..." ]
86
+ lifecycle {
87
+ ignore_changes = [ ssh_keys ]
88
+ }
89
+ }
90
+ ```
91
+
92
+ 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).
93
+
94
+ ### Deprecation of `datacenter` attribute for Primary IPs and Servers
95
+
96
+ The `datacenter` attributes is deprecated in `Primary IPs` and `Servers` API resources and will be removed after 1 July 2026. See https://docs.hetzner.cloud/changelog#2025-12-16-phasing-out-datacenters for more details.
97
+
98
+ Therefore, `datacenter` attributes is deprecated in favour of the `location` attribute in the following Terraform resources/datasources:
99
+
100
+ - `hcloud_server`
101
+ - `data.hcloud_server`
102
+ - `data.hcloud_servers`
103
+ - `hcloud_primary_ip`
104
+ - `data.hcloud_primary_ip`
105
+ - `data.hcloud_primary_ips`
106
+
107
+ The `location` attribute already exists for Servers, and was added for Primary IPs.
108
+
109
+ The `datacenter` attribute will not be updated any more after it is no longer returned by the API. For existing resources this will keep the previous value, for new resources this will result in an empty string.
110
+
111
+ Please make sure to upgrade to `v1.58.0+` before the removal date to avoid potential crashes in the provider.
112
+
113
+ ### Features
114
+
115
+ - drop support for OpenTofu v1.8
116
+ - add support for OpenTofu v1.11
117
+ - **storage-box**: stop ignoring changes to ssh keys and replace resource instead (#1296)
118
+ - deprecate datacenter in primary ips and servers (#1309)
119
+
120
+ ### Bug Fixes
121
+
122
+ - **storage-box**: run actions serially (#1294)
123
+ - **zone**: using variable for primary nameservers causes error (#1306)
124
+ - **storage-box**: retry snapshot+subaccount create when locked (#1307)
125
+
126
+ ## [v1.57.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.57.0)
127
+
128
+ ### Storage Box API Experimental
129
+
130
+ This release adds support for the [Storage Box API](https://docs.hetzner.cloud/reference/hetzner#storage-boxes).
131
+
132
+ The Storage Box integration will be introduced as an **experimental** feature. This experimental phase is expected to last until **2 January 2026**. During this period, upcoming minor releases of the project may include breaking changes to features related to the Storage Box API. You can find out the current state of this in [#1285](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1285).
133
+
134
+ This release includes all changes from the recent [Storage Box API changelog](https://docs.hetzner.cloud/changelog#2025-10-21-storage-box-api-update) entry.
135
+
136
+ #### Examples
137
+
138
+ ```terraform
139
+ resource "hcloud_storage_box" "backups" {
140
+ name = "backups"
141
+ storage_box_type = "bx21"
142
+ location = "hel1"
143
+ password = var.storage_box_password
144
+ }
145
+
146
+ resource "hcloud_storage_box_snapshot" "tool_xyz_migration" {
147
+ storage_box_id = hcloud_storage_box.backups.id
148
+
149
+ description = "Before Tool XYZ Migration"
150
+ labels = {
151
+ env = "production"
152
+ }
153
+ }
154
+
155
+ resource "hcloud_storage_box_subaccount" "team_badger" {
156
+ storage_box_id = hcloud_storage_box.backups.id
157
+
158
+ home_directory = "teams/badger/"
159
+ password = var.team_badger_password
160
+ }
161
+ ```
162
+
163
+ ### Features
164
+
165
+ - drop builds for windows arm (32 bit) (#1260)
166
+ - drop support for terraform v1.11
167
+ - drop support for terraform v1.12
168
+ - add support for terraform v1.13
169
+ - add support for terraform v1.14
170
+ - add support for Storage Boxes (#1166)
171
+
172
+ ### Bug Fixes
173
+
174
+ - abort when data transformation errors (#1253)
175
+ - ensure partially created resources are tainted in the state (#1257)
176
+ - dns records order is not guaranteed (#1259)
177
+
178
+ ## [v1.56.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.56.0)
179
+
180
+ ### DNS API is now generally available
181
+
182
+ The DNS API is now generally available, as well as support for features in this project that are related to the DNS API.
183
+
184
+ To migrate existing zones to the new DNS API, see the [DNS migration guide](https://docs.hetzner.com/networking/dns/migration-to-hetzner-console/process/).
185
+
186
+ See the [changelog](https://docs.hetzner.cloud/changelog#2025-11-10-dns-ga) for more details.
187
+
188
+ ### Server and load balancer network attachment
189
+
190
+ With this release, the `hcloud_server_network` and `hcloud_load_balancer_network` resource now supports assigning a server or load balancer to a specific network subnet using the `subnet_id` attribute. The `subnet_id` attribute also validates that the `network_id` and `ip` attributes are consistent with the `subnet_id`. If they are not consistent, the resource will be replaced.
191
+
192
+ In the `hcloud_server_network` resource, the `alias_ips` attributes now defaults to an empty set when undefined.
193
+
194
+ ### Features
195
+
196
+ - attach server to a specific network subnet (#1217)
197
+ - attach load balancer to a specific network subnet (#1242)
198
+ - DNS support is now generally available (#1247)
199
+
200
+ ## [v1.55.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.55.0)
201
+
202
+ ### Features
203
+
204
+ - support managing records of type SOA (#1225)
205
+ - **firewall**: importing firewall attachments (#1231)
206
+ - add `txt_record` helper function (#1227)
207
+
208
+ ### Bug Fixes
209
+
210
+ - **load-balancer**: mark health check retries as required (#1232)
211
+
212
+ ## [v1.54.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.54.0)
213
+
214
+ ### DNS API Beta
215
+
216
+ This release adds support for the new [DNS API](https://docs.hetzner.cloud/reference/cloud#dns).
217
+
218
+ The DNS API is currently in **beta**, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the [DNS Beta FAQ](https://docs.hetzner.com/networking/dns/faq/beta) for more details.
219
+
220
+ Future minor releases of this project may include breaking changes for features that are related to the DNS API.
221
+
222
+ See the [DNS API Beta changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for more details.
223
+
224
+ **Examples**
225
+
226
+ ```terraform
227
+ resource "hcloud_zone" "example" {
228
+ name = "example.com"
229
+ mode = "primary"
230
+ labels = {
231
+ key = "value"
232
+ }
233
+ }
234
+
235
+ resource "hcloud_zone_rrset" "apex_a_example" {
236
+ zone = hcloud_zone.example.name
237
+ name = "@"
238
+ type = "A"
239
+ records = [
240
+ { value = "201.78.10.45", comment = "server1" },
241
+ ]
242
+ }
243
+ ```
244
+
245
+ ### Features
246
+
247
+ - support the new DNS API (#1210)
248
+
249
+ ## [v1.53.1](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.53.1)
250
+
251
+ ### Bug Fixes
252
+
253
+ - show warnings using diagnostics instead of logs (#1197)
254
+ - also check server type deprecation after server creation (#1201)
255
+
256
+ ## [v1.53.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.53.0)
257
+
258
+ [Server Types](https://docs.hetzner.cloud/reference/cloud#server-types) now depend on [Locations](https://docs.hetzner.cloud/reference/cloud#locations).
259
+
260
+ - We added a new `locations` property to the [Server Types](https://docs.hetzner.cloud/reference/cloud#server-types) resource. The new property defines a list of supported [Locations](https://docs.hetzner.cloud/reference/cloud#locations) and additional per [Locations](https://docs.hetzner.cloud/reference/cloud#locations) details such as deprecations information.
261
+
262
+ - We deprecated the `deprecation` property from the [Server Types](https://docs.hetzner.cloud/reference/cloud#server-types) resource. The property will gradually be phased out as per [Locations](https://docs.hetzner.cloud/reference/cloud#locations) deprecations are being announced. Please use the new per [Locations](https://docs.hetzner.cloud/reference/cloud#locations) deprecation information instead.
263
+
264
+ See our [changelog](https://docs.hetzner.cloud/changelog#2025-09-24-per-location-server-types) for more details.
265
+
266
+ **Upgrading**
267
+
268
+ ```tf
269
+ // Before
270
+ data "hcloud_server_type" "main" {
271
+ name = "cx22"
272
+ }
273
+
274
+ check "server_type" {
275
+ assert {
276
+ condition = !data.hcloud_server_type.main.is_deprecated
277
+ error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated"
278
+ }
279
+ }
280
+ ```
281
+
282
+ ```tf
283
+ // After
284
+ data "hcloud_location" "main" {
285
+ name = "fsn1"
286
+ }
287
+
288
+ data "hcloud_server_type" "main" {
289
+ name = "cx22"
290
+ }
291
+
292
+ locals {
293
+ server_type_location = one([
294
+ for o in data.hcloud_server_type.main.locations : o
295
+ if o.name == data.hcloud_location.main.name
296
+ ])
297
+ }
298
+
299
+ check "server_type_location" {
300
+ assert {
301
+ condition = local.server_type_location != null
302
+ error_message = "Server Type ${data.hcloud_server_type.main.name} does not exists in Location ${data.hcloud_location.main.name}"
303
+ }
304
+ assert {
305
+ condition = !local.server_type_location.is_deprecated
306
+ error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated in Location ${data.hcloud_location.main.name}"
307
+ }
308
+ }
309
+ ```
310
+
311
+ ### Features
312
+
313
+ - add category property to server type (#1184)
314
+ - per locations server types (#1193)
315
+
316
+ ### Bug Fixes
317
+
318
+ - ensure exponential poll backoff is configured (#1160)
319
+ - handle not found volume deletion (#1189)
320
+ - wait for floating_ip assign action to complete (#1195)
321
+ - add experimental features maturity (#1191)
322
+
323
+ ## [v1.52.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.52.0)
324
+
325
+ ### Features
326
+
327
+ - drop support for terraform v1.9 (#1125)
328
+ - drop support for terraform v1.10 (#1126)
329
+ - add support for terraform v1.11 (#1127)
330
+ - add support for terraform v1.12 (#1128)
331
+ - warn when experimental features are used (#1155)
332
+ - drop support for opentofu v1.7 (#1158)
333
+ - add support for opentofu v1.10 (#1159)
334
+
335
+ ## [v1.51.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.51.0)
336
+
337
+ ### Features
338
+
339
+ - **server**: add private networks in data_source (#1115)
340
+
341
+ ## [v1.50.1](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.50.1)
342
+
343
+ ### Bug Fixes
344
+
345
+ - missing assignee_type in assign primary ip call (#1117)
346
+
347
+ ## [v1.50.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.50.0)
348
+
349
+ In this release, we upgraded the underlying Hetzner Cloud API client ([hcloud-go](https://github.com/hetznercloud/hcloud-go)) for the entire provider, which involves risk of breakage. Please make sure to test this new version before using it on production environments.
350
+
351
+ ### Features
352
+
353
+ - drop support for terraform v1.8 (#1066)
354
+ - add support for terraform v1.10 (#1067)
355
+ - add support for opentofu v1.9 (#1071)
356
+
357
+ ### Bug Fixes
358
+
359
+ - upgrade hcloud-go to v2 (#1062)
360
+
361
+ ## [v1.50.0-rc.0](https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.50.0-rc.0)
362
+
363
+ In this release, we upgraded the underlying Hetzner Cloud API client ([hcloud-go](https://github.com/hetznercloud/hcloud-go)) for the entire provider, which involves risk of breakage. Please make sure to test this new version before using it on production environments.
364
+
365
+ ### Features
366
+
367
+ - drop support for terraform v1.8 (#1066)
368
+ - add support for terraform v1.10 (#1067)
369
+ - add support for opentofu v1.9 (#1071)
370
+
371
+ ### Bug Fixes
372
+
373
+ - upgrade hcloud-go to v2 (#1062)
374
+
375
+ ## [1.49.1](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.49.0...v1.49.1) (2024-11-21)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * remove server network interface workaround ([#1021](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1021)) ([be330df](https://github.com/hetznercloud/terraform-provider-hcloud/commit/be330dfbd721b32e337c188c863c97667f021f65))
381
+
382
+ ## [1.49.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.48.1...v1.49.0) (2024-11-07)
383
+
384
+
385
+ ### Features
386
+
387
+ * add data.load_balancer_type(s) data sources ([#991](https://github.com/hetznercloud/terraform-provider-hcloud/issues/991)) ([ef60613](https://github.com/hetznercloud/terraform-provider-hcloud/commit/ef60613cf649c60a04663011180eae9318afba7b))
388
+ * add support for opentofu v1.8 ([#1029](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1029)) ([c7902de](https://github.com/hetznercloud/terraform-provider-hcloud/commit/c7902deb659c39ae1f00352ac967d22b9e98e169))
389
+ * drop support for opentofu v1.6 ([#1030](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1030)) ([8c448dd](https://github.com/hetznercloud/terraform-provider-hcloud/commit/8c448dd02b3bdcbc881825fc18ea7163cecda22a))
390
+
391
+
392
+ ### Bug Fixes
393
+
394
+ * do not retry deleting a protected primary ip ([#1015](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1015)) ([e9de286](https://github.com/hetznercloud/terraform-provider-hcloud/commit/e9de2865836bef8d4f4e9604d2d8c83c5a7cd12e)), closes [#1014](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1014)
395
+ * **primary-ip:** conflict when deleting IP ([#994](https://github.com/hetznercloud/terraform-provider-hcloud/issues/994)) ([0873fb1](https://github.com/hetznercloud/terraform-provider-hcloud/commit/0873fb1580bf33334bc266a508d42a94486c20c5))
396
+
397
+ ## [1.48.1](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.48.0...v1.48.1) (2024-09-06)
398
+
399
+
400
+ ### Bug Fixes
401
+
402
+ * missing deprecation info in server type list data source ([#984](https://github.com/hetznercloud/terraform-provider-hcloud/issues/984)) ([c12560e](https://github.com/hetznercloud/terraform-provider-hcloud/commit/c12560ebbb1c5ed131f84154a9463e8d4ea7ab2a))
403
+
404
+ ## [1.48.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.47.0...v1.48.0) (2024-07-25)
405
+
406
+
407
+ ### Features
408
+
409
+ * add support for opentofu v1.7 ([#950](https://github.com/hetznercloud/terraform-provider-hcloud/issues/950)) ([ae115a8](https://github.com/hetznercloud/terraform-provider-hcloud/commit/ae115a8c26cc16c3dea5faf2226617036e7bcb8b))
410
+ * add support for terraform v1.9 ([#949](https://github.com/hetznercloud/terraform-provider-hcloud/issues/949)) ([642ac15](https://github.com/hetznercloud/terraform-provider-hcloud/commit/642ac1511689df6bd4dbc8a8e29e1c19a2fd8bd9))
411
+ * drop support for terraform v1.7.x ([#947](https://github.com/hetznercloud/terraform-provider-hcloud/issues/947)) ([f6372aa](https://github.com/hetznercloud/terraform-provider-hcloud/commit/f6372aacf6e8d47839bbfa6101476f6e0c1c6125))
412
+ * **server-type:** mark included_traffic attribute as deprecated ([#963](https://github.com/hetznercloud/terraform-provider-hcloud/issues/963)) ([e8101cc](https://github.com/hetznercloud/terraform-provider-hcloud/commit/e8101ccff942ffe3406a6e9ca5a07c3f7fc34a2d))
413
+
414
+
415
+ ### Bug Fixes
416
+
417
+ * do not continue if an api error occurred ([#958](https://github.com/hetznercloud/terraform-provider-hcloud/issues/958)) ([85a4dd0](https://github.com/hetznercloud/terraform-provider-hcloud/commit/85a4dd0c3390cb533fafa5d982d3faff6749aa7d))
418
+ * **load-balancer:** automatic import of target adds conflicting fields ([#962](https://github.com/hetznercloud/terraform-provider-hcloud/issues/962)) ([6c0b1c4](https://github.com/hetznercloud/terraform-provider-hcloud/commit/6c0b1c42c9eee68f1e6dbc1854fb0f8ec00fbfab)), closes [#961](https://github.com/hetznercloud/terraform-provider-hcloud/issues/961)
419
+
420
+ ## [1.47.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.46.1...v1.47.0) (2024-05-02)
421
+
422
+
423
+ ### Features
424
+
425
+ * test with Terraform 1.8 ([#919](https://github.com/hetznercloud/terraform-provider-hcloud/issues/919)) ([800a66c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/800a66c0b9e61337b86a58f3ce7ab478fad391b6))
426
+
427
+
428
+ ### Bug Fixes
429
+
430
+ * **ssh-key:** data inconsistency with empty label objects ([#922](https://github.com/hetznercloud/terraform-provider-hcloud/issues/922)) ([7e1bf2c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/7e1bf2cd6c80c0a86d06b293e7d325e8986d5b3f)), closes [#921](https://github.com/hetznercloud/terraform-provider-hcloud/issues/921)
431
+ * **subnet:** handle new error message for deleting subnets with attached resources ([#923](https://github.com/hetznercloud/terraform-provider-hcloud/issues/923)) ([932c47b](https://github.com/hetznercloud/terraform-provider-hcloud/commit/932c47b8c626898fae47f07b4c161d0206561fb1))
432
+
433
+ ## [1.46.1](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.46.0...v1.46.1) (2024-04-05)
434
+
435
+
436
+ ### Bug Fixes
437
+
438
+ * **server:** cannot update placement group ([#902](https://github.com/hetznercloud/terraform-provider-hcloud/issues/902)) ([fa5f98c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/fa5f98cf4e0c62249b14694ad2db59a5baf8fe30))
439
+
440
+ ## [1.46.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.45.0...v1.46.0) (2024-03-26)
441
+
442
+
443
+ ### Features
444
+
445
+ * **firewall:** set IPs without prefix directly ([#874](https://github.com/hetznercloud/terraform-provider-hcloud/issues/874)) ([40df28d](https://github.com/hetznercloud/terraform-provider-hcloud/commit/40df28d79dd192ef39edb51dfd6c4a6626d6413b)), closes [#807](https://github.com/hetznercloud/terraform-provider-hcloud/issues/807) [#715](https://github.com/hetznercloud/terraform-provider-hcloud/issues/715)
446
+ * support terraform v1.7.x ([#845](https://github.com/hetznercloud/terraform-provider-hcloud/issues/845)) ([a5229f4](https://github.com/hetznercloud/terraform-provider-hcloud/commit/a5229f492c5cee0bede74354ad697c452bd55211))
447
+
448
+
449
+ ### Bug Fixes
450
+
451
+ * add api request status code in error diagnostics ([#839](https://github.com/hetznercloud/terraform-provider-hcloud/issues/839)) ([3689ade](https://github.com/hetznercloud/terraform-provider-hcloud/commit/3689ade53f2706f48bda4b3c14577b5bc9deadf3))
452
+ * **firewall:** unnecessary diff if user specified non-minimal IPv6 ([40df28d](https://github.com/hetznercloud/terraform-provider-hcloud/commit/40df28d79dd192ef39edb51dfd6c4a6626d6413b)), closes [#870](https://github.com/hetznercloud/terraform-provider-hcloud/issues/870)
453
+ * return after error in datacenter data source ([#847](https://github.com/hetznercloud/terraform-provider-hcloud/issues/847)) ([bfac734](https://github.com/hetznercloud/terraform-provider-hcloud/commit/bfac734e1eefc135e3e1001c70904e93a7927859))
454
+ * **server:** unable to attach two new networks ([#901](https://github.com/hetznercloud/terraform-provider-hcloud/issues/901)) ([df177e2](https://github.com/hetznercloud/terraform-provider-hcloud/commit/df177e285aba803ca117a639097f0745baa54a05)), closes [#899](https://github.com/hetznercloud/terraform-provider-hcloud/issues/899)
455
+
456
+ ## [1.45.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.44.1...v1.45.0) (2024-01-11)
457
+
458
+
459
+ ### Features
460
+
461
+ * **provider:** choose between constant & exponential backoff for actions ([#798](https://github.com/hetznercloud/terraform-provider-hcloud/issues/798)) ([fa7ea1f](https://github.com/hetznercloud/terraform-provider-hcloud/commit/fa7ea1f167750e64cc9ebbb26ce0eb8171d55df6))
462
+ * **server:** add `primary_disk_size` attribute in resource and datasource ([#801](https://github.com/hetznercloud/terraform-provider-hcloud/issues/801)) ([98c2f2d](https://github.com/hetznercloud/terraform-provider-hcloud/commit/98c2f2d01bcdb08fcf5d564a774b1f2d60124296))
463
+
464
+
465
+ ### Bug Fixes
466
+
467
+ * **network:** mark data source fields as computed ([#805](https://github.com/hetznercloud/terraform-provider-hcloud/issues/805)) ([63e157c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/63e157c42185b06cb2f9714014f564e9383a6976))
468
+ * **placement-group:** mark data source fields as computed ([#806](https://github.com/hetznercloud/terraform-provider-hcloud/issues/806)) ([53069ac](https://github.com/hetznercloud/terraform-provider-hcloud/commit/53069ac9f4df7d6dc18567c61a92eba11afebd53))
469
+ * **server:** missing field primary_disk_size ([#811](https://github.com/hetznercloud/terraform-provider-hcloud/issues/811)) ([9bd0ef0](https://github.com/hetznercloud/terraform-provider-hcloud/commit/9bd0ef0c1d005f00436567f4520b3354940fc041))
470
+
471
+ ## [1.44.1](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.44.0...v1.44.1) (2023-10-05)
472
+
473
+
474
+ ### Bug Fixes
475
+
476
+ * failed to load plugin schemas ([#764](https://github.com/hetznercloud/terraform-provider-hcloud/issues/764)) ([b68a97c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/b68a97cfef01f4f3cb5968ce866dd0e77e437684))
477
+
478
+ ## [1.44.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.43.0...v1.44.0) (2023-10-04)
479
+
480
+
481
+ ### Features
482
+
483
+ * setup initial plugin framework skaffolding ([#749](https://github.com/hetznercloud/terraform-provider-hcloud/issues/749)) ([5c284e2](https://github.com/hetznercloud/terraform-provider-hcloud/commit/5c284e293dd2e4a8ad83ae9b2784fd3b8261c323))
484
+
485
+
486
+ ### Bug Fixes
487
+
488
+ * poll_interval not working as expected ([6ef7467](https://github.com/hetznercloud/terraform-provider-hcloud/commit/6ef7467b198ea1807715d7bc99e03fbad62688a2))
489
+
490
+ ## [1.43.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.42.1...v1.43.0) (2023-09-20)
491
+
492
+
493
+ ### Features
494
+
495
+ * build with Go 1.21 ([#753](https://github.com/hetznercloud/terraform-provider-hcloud/issues/753)) ([f68e079](https://github.com/hetznercloud/terraform-provider-hcloud/commit/f68e0791307ee2cddce172f3bcd0f786fd2f2b32))
496
+ * **server:** Optional graceful shutdown before deleting servers ([#755](https://github.com/hetznercloud/terraform-provider-hcloud/issues/755)) ([0c477a3](https://github.com/hetznercloud/terraform-provider-hcloud/commit/0c477a32b569c2cac455cf2d6131d8c62519803e))
497
+
498
+ ## [1.42.1](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.42.0...v1.42.1) (2023-08-14)
499
+
500
+
501
+ ### Bug Fixes
502
+
503
+ * **primary_ip:** list data source only returned first 25 IPs ([#729](https://github.com/hetznercloud/terraform-provider-hcloud/issues/729)) ([62e9781](https://github.com/hetznercloud/terraform-provider-hcloud/commit/62e97810df58d2eccaaed2e81d7833fff4e5d6ae))
504
+ * **server:** panic when passing empty string as ssh key ([#736](https://github.com/hetznercloud/terraform-provider-hcloud/issues/736)) ([d57b386](https://github.com/hetznercloud/terraform-provider-hcloud/commit/d57b38606c4b052b7d8181074d0860bd35935145))
505
+ * **server:** Return `nil` instead of `"<nil>"` with IPv4/IPv6 disabled ([#723](https://github.com/hetznercloud/terraform-provider-hcloud/issues/723)) ([6cd2a37](https://github.com/hetznercloud/terraform-provider-hcloud/commit/6cd2a3753df03ebb6f3ebdb46899f2ff167d04ad))
506
+ * use exponential backoff when retrying actions ([#735](https://github.com/hetznercloud/terraform-provider-hcloud/issues/735)) ([d51ee4a](https://github.com/hetznercloud/terraform-provider-hcloud/commit/d51ee4a46dd869320b90413d8e7806fab21dc419))
507
+
508
+ ## [1.42.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.41.0...v1.42.0) (2023-07-13)
509
+
510
+
511
+ ### Features
512
+
513
+ * **image:** add filter include_deprecated to datasources ([#685](https://github.com/hetznercloud/terraform-provider-hcloud/issues/685)) ([#717](https://github.com/hetznercloud/terraform-provider-hcloud/issues/717)) ([9f039ba](https://github.com/hetznercloud/terraform-provider-hcloud/commit/9f039ba35b9b0e94f4f5581099031e11f001a6d8))
514
+
515
+
516
+ ### Bug Fixes
517
+
518
+ * **lb:** early validation for lb_target arguments ([#721](https://github.com/hetznercloud/terraform-provider-hcloud/issues/721)) ([10928d1](https://github.com/hetznercloud/terraform-provider-hcloud/commit/10928d1389f4f7e08f042c33101af03a4e78d155))
519
+ * **rdns:** crash when resource was deleted outside of terraform ([#720](https://github.com/hetznercloud/terraform-provider-hcloud/issues/720)) ([aad0614](https://github.com/hetznercloud/terraform-provider-hcloud/commit/aad0614d4abbe2dfbed53630b2e29380e6b087c5)), closes [#710](https://github.com/hetznercloud/terraform-provider-hcloud/issues/710)
520
+
521
+ ## [1.41.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.40.0...v1.41.0) (2023-06-22)
522
+
523
+
524
+ ### Features
525
+
526
+ * **network:** add support for exposing routes to vswitch connection ([#703](https://github.com/hetznercloud/terraform-provider-hcloud/issues/703)) ([f213550](https://github.com/hetznercloud/terraform-provider-hcloud/commit/f2135509328ff2418ddc5f5224872ccb68821f6c))
527
+
528
+ ## [1.40.0](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.39.0...v1.40.0) (2023-06-13)
529
+
530
+
531
+ ### Features
532
+
533
+ * deprecation info for server types ([#691](https://github.com/hetznercloud/terraform-provider-hcloud/issues/691)) ([9e6a22c](https://github.com/hetznercloud/terraform-provider-hcloud/commit/9e6a22cf2d5cc1e1859ec622c649978b83207938))
534
+
535
+
536
+ ### Bug Fixes
537
+
538
+ * **server:** invalid ipv6_address nil1 when no IPv6 is used ([#689](https://github.com/hetznercloud/terraform-provider-hcloud/issues/689)) ([2912f45](https://github.com/hetznercloud/terraform-provider-hcloud/commit/2912f459bbf47b2d9f90325056713a4eb9d99d1d))
539
+
540
+ ## v1.39.0
541
+
542
+ ### What's Changed
543
+ * feat(rdns): support setting RDNS for Primary IPs by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/669
544
+ * feat(server_type): return included traffic by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/680
545
+
546
+
547
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.2...v1.39.0
548
+
549
+ ## v1.38.2
550
+
551
+ ### What's Changed
552
+ * ci: run e2etests in parallel by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/660
553
+ * fix(server): avoid recreate when using official image by ID by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/661
554
+
555
+
556
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.1...v1.38.2
557
+
558
+ ## v1.38.1
559
+
560
+ Affordable, sustainable & powerful! rocketYou can now get one of our Arm64 CAX servers to optimize your operations while minimizing your costs!
561
+ Discover Ampere’s efficient and robust Arm64 architecture and be ready to get blown away with its performance. sunglasses
562
+
563
+ Learn more: https://www.hetzner.com/news/arm64-cloud
564
+
565
+ ### What's Changed
566
+ * fix(server): crash when non-existent server type is used by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/659
567
+ * fix(server): unable to create server from image id by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/658
568
+ * fix(deps): update module golang.org/x/crypto to v0.8.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/652
569
+
570
+
571
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.0...v1.38.1
572
+
573
+ ## v1.38.0
574
+
575
+ Affordable, sustainable & powerful! 🚀You can now get one of our Arm64 CAX servers to optimize your operations while minimizing your costs!
576
+ Discover Ampere’s efficient and robust Arm64 architecture and be ready to get blown away with its performance. 😎
577
+
578
+ Learn more: https://www.hetzner.com/news/arm64-cloud
579
+
580
+ ### What's Changed
581
+ * fix(deps): update github.com/hashicorp/go-cty digest to 8598007 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/633
582
+ * fix(deps): update module golang.org/x/net to v0.9.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/651
583
+ * feat: add support for ARM APIs by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/654
584
+
585
+
586
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.37.0...v1.38.0
587
+
588
+ ## v1.37.0
589
+
590
+ ### What's Changed
591
+ * docs: Add missing location (hil) by @akirak in https://github.com/hetznercloud/terraform-provider-hcloud/pull/606
592
+ * docs: replace outdated example OS image by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/615
593
+ * docs: list available datacenters by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/613
594
+ * docs: explain deprecated attributes by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/614
595
+ * feat(primaryip): return IPv6 subnet #600 by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/620
596
+ * fix: state is missing resources when rate limit is reached #604 by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/621
597
+ * chore(ci): run e2e on public workers by @samcday in https://github.com/hetznercloud/terraform-provider-hcloud/pull/631
598
+ * Configure Renovate by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/629
599
+ * chore: Test against Terraform v1.4 by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/638
600
+ * fix(deps): update module github.com/hashicorp/terraform-plugin-log to v0.8.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/639
601
+ * fix(deps): update module github.com/hetznercloud/hcloud-go to v1.41.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/637
602
+ * fix(deps): update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.25.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/640
603
+ * chore(deps): update goreleaser/goreleaser-action action to v4 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/642
604
+ * fix: self-reported version not correct by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/630
605
+ * chore(deps): update actions/setup-go action to v4 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/643
606
+ * fix(deps): update module golang.org/x/crypto to v0.7.0 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/641
607
+ * docs: freebsd64 is no longer available as rescue image by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/645
608
+ * refactor: Make CI Happy Again by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/646
609
+ * fix(deps): update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.26.1 by @renovate in https://github.com/hetznercloud/terraform-provider-hcloud/pull/644
610
+
611
+ ### New Contributors
612
+ * @akirak made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/606
613
+ * @samcday made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/631
614
+
615
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.36.2...v1.37.0
616
+
617
+ ## v1.36.2
618
+
619
+ ### What's Changed
620
+ * test: fix acceptence tests for new location Hillsboro by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/598
621
+ * fix(server): unhandled errors from API calls by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/602
622
+ * fix(lb): lb_target breaks when load-balancer is deleted in API by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/603
623
+ * fix(lb): add missing fields to data source by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/605
624
+
625
+
626
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.36.1...v1.36.2
627
+
628
+ ## v1.36.1
629
+
630
+ ### What's Changed
631
+ * chore: update hcloud-go to v1.37.0 by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/591
632
+ * fix(server): make sure that each network block is unique by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/594
633
+ * docs: mention that we only accept the location name as attribute by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/595
634
+ * fix(server): unnecessary updates when using network #556 by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/593
635
+ * fix: multiple resources break when parent resource is recreated by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/596
636
+
637
+
638
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.36.0...v1.36.1
639
+
640
+ ## v1.36.0
641
+
642
+ ### What's Changed
643
+ * Update auto delete on primary IP resource change by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/573
644
+ * Update Dependencies by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/575
645
+ * Add tests for Terraform 1.3 by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/576
646
+ * docs: explain how to create a server from snapshot by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/582
647
+ * docs: clarify arguments of hcloud_primary_ip resource by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/584
648
+ * fix: error when deleting hcloud_primary_ip with auto_delete by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/585
649
+ * test: fix flaky test TestServerResource_PrimaryIPNetworkTests by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/587
650
+ * feat: import hcloud_load_balancer_target by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/589
651
+ * fix: race-condition when re-creating server with external primary ip by @apricote in https://github.com/hetznercloud/terraform-provider-hcloud/pull/590
652
+
653
+ ### New Contributors
654
+ * @apricote made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/582
655
+
656
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.35.2...v1.36.0
657
+
658
+ ## v1.35.2
659
+
660
+ ### What's Changed
661
+ * bug: add missing datacenter option at primary_ip & fix file naming by @komandar in https://github.com/hetznercloud/terraform-provider-hcloud/pull/559
662
+ * Fix private only server (attached to network) creation by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/562
663
+ * feature: update workflow & golang to newest stable release 1.19 by @komandar in https://github.com/hetznercloud/terraform-provider-hcloud/pull/560
664
+ * ci: fix not available gpg_private_key in workflow by @komandar in https://github.com/hetznercloud/terraform-provider-hcloud/pull/563
665
+ * Remove < and > signs in import examples by @ekeih in https://github.com/hetznercloud/terraform-provider-hcloud/pull/564
666
+ * fix: wrong required statement by @komandar in https://github.com/hetznercloud/terraform-provider-hcloud/pull/567
667
+ * style: unify the bool and boolean type in the docs by @komandar in https://github.com/hetznercloud/terraform-provider-hcloud/pull/568
668
+
669
+ ### New Contributors
670
+ * @komandar made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/559
671
+ * @ekeih made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/564
672
+
673
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.35.1...v1.35.2
674
+
675
+ ## v1.35.1
676
+
677
+ ### What's Changed
678
+ * Add workaround "fix" for network interface issue by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/552
679
+ * Update hcloud-go to v1.35.2 by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/554
680
+ * Prevent segfault when image nonexistent by @acuteaura in https://github.com/hetznercloud/terraform-provider-hcloud/pull/553
681
+
682
+ ### New Contributors
683
+ * @acuteaura made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/553
684
+
685
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.35.0...v1.35.1
686
+
687
+ ## v1.35.0
688
+
689
+ ### What's Changed
690
+ * Implement Server Create Without primary ip on update behavior by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/548
691
+ * Add support of using deprecated images by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/549
692
+
693
+
694
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.34.3...v1.35.0
695
+
696
+ ## v1.34.3
697
+
698
+ ### What's Changed
699
+ * Create server without primary ips: Fix edge case bug + add test by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/546
700
+
701
+
702
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.34.2...v1.34.3
703
+
704
+ ## v1.34.2
705
+
706
+ ### What's Changed
707
+ * Server Create without primary IPs via public_net by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/544
708
+
709
+
710
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.34.1...v1.34.2
711
+
712
+ ## v1.34.1
713
+
714
+ ### What's Changed
715
+ * Add primary ip documentation by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/540
716
+
717
+
718
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.34.0...v1.34.1
719
+
720
+ ## v1.34.0
721
+
722
+ ### What's Changed
723
+ * Update Dependencies (TF SDK 2.7.1 -> 2.14) by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/524
724
+ * DataSource Network `id` should be an integer by @guineveresaenger in https://github.com/hetznercloud/terraform-provider-hcloud/pull/525
725
+ * Improve documentation by @02bensch in https://github.com/hetznercloud/terraform-provider-hcloud/pull/536
726
+ * Add support for primary IPs by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/538
727
+
728
+ ### New Contributors
729
+ * @guineveresaenger made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/525
730
+ * @02bensch made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/536
731
+
732
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.33.2...v1.34.0
733
+
734
+ ## v1.33.2
735
+
736
+ ### What's Changed
737
+ * Implement validation on labels as per spec by @4ND3R50N in https://github.com/hetznercloud/terraform-provider-hcloud/pull/522
738
+ * Add resourceFloatingIPAssignmentUpdate by @CyberShadow in https://github.com/hetznercloud/terraform-provider-hcloud/pull/501
739
+ * Use Go 1.18 for building by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/523
740
+
741
+ ### New Contributors
742
+ * @4ND3R50N made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/522
743
+ * @CyberShadow made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/501
744
+
745
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.33.1...v1.33.2
746
+
747
+ ## v1.33.1
748
+
749
+ ### What's Changed
750
+ * Datasource hcloud_location & hcloud_locations: Add network_zone by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/508
751
+ * hcloud_servcer resource: Retry on enabling rescue (reset call) by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/511
752
+
753
+
754
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.33.0...v1.33.1
755
+
756
+ ## v1.33.0
757
+
758
+ ### What's Changed
759
+ * Update image.html.md by @FloMaetschke in https://github.com/hetznercloud/terraform-provider-hcloud/pull/494
760
+ * docs: Add missing location (ash) by @dhoppe in https://github.com/hetznercloud/terraform-provider-hcloud/pull/496
761
+ * Add missing argument for resource hcloud_ssh_key by @dhoppe in https://github.com/hetznercloud/terraform-provider-hcloud/pull/498
762
+ * Make the image property of hcloud_server optional by @fhofherr in https://github.com/hetznercloud/terraform-provider-hcloud/pull/499
763
+ * Implement hcloud_firewall_attachment resource by @fhofherr in https://github.com/hetznercloud/terraform-provider-hcloud/pull/500
764
+
765
+ ### New Contributors
766
+ * @FloMaetschke made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/494
767
+ * @dhoppe made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/496
768
+
769
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.32.2...v1.33.0
770
+
771
+ ## v1.32.2
772
+
773
+ ### What's Changed
774
+ * server: resource: fix spelling by @xdevs23 in https://github.com/hetznercloud/terraform-provider-hcloud/pull/480
775
+ * Use our own E2E Test runner by @LKaemmerling in https://github.com/hetznercloud/terraform-provider-hcloud/pull/481
776
+ * Mark the hcloud_token sensitive by @fhofherr in https://github.com/hetznercloud/terraform-provider-hcloud/pull/479
777
+ * Fix nil check for RNDSupporter by @fhofherr in https://github.com/hetznercloud/terraform-provider-hcloud/pull/485
778
+ * fix: typo in docs by @RobertHeim in https://github.com/hetznercloud/terraform-provider-hcloud/pull/486
779
+ * Adjust tests by @fhofherr in https://github.com/hetznercloud/terraform-provider-hcloud/pull/489
780
+ * fix: typo by @RobertHeim in https://github.com/hetznercloud/terraform-provider-hcloud/pull/488
781
+
782
+ ### New Contributors
783
+ * @xdevs23 made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/480
784
+ * @RobertHeim made their first contribution in https://github.com/hetznercloud/terraform-provider-hcloud/pull/486
785
+
786
+ **Full Changelog**: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.32.1...v1.32.2
787
+
788
+ ## v1.32.1
789
+
790
+
791
+
792
+ - ec487e93 Fix failing tests
793
+ - d10e9f0d Fix firewall deletion
794
+
795
+ ## v1.32.0
796
+
797
+
798
+
799
+ - af8300cf Case-insensitive comparison of IPv6 addresses
800
+ - 4adfcfa9 Update hcloud-go to v1.33.0
801
+ - 9e08f76f hcloud_firewall resource: Remove all resources before deleting the firewall
802
+
803
+ ## v1.31.1
804
+
805
+
806
+
807
+ - 545375f9 hcloud_server resource: Add computed to firewall_ids
808
+
809
+ ## v1.31.0
810
+
811
+ ### What's Changed
812
+
813
+ - 3a6384cc Add delete and rebuild protection (#432)
814
+ - 6eaecafa Add list data source for certificates
815
+ - 07b1b53e Add list data source for firewall (#445)
816
+ - 45843b99 Add list data source for floating ips (#448)
817
+ - 9914e064 Add list data source for images
818
+ - 21267191 Add list data source for load balancers
819
+ - eb3bcc0c Add list data source for networks (#452)
820
+ - a0045237 Add list data source for placement groups (#456)
821
+ - 333e38ca Add list data source for server (#434)
822
+ - 3a33c154 Add list data source for volumes
823
+ - 8de96d9d Allow updating of hcloud_load_balancer_network resource
824
+ - 14c10006 Deprecate hcloud_load_balancer resource `target` property
825
+ - 5a7feae8 Do not fail fast on e2e tests
826
+ - a3023bfc Fix datasources of server and volume (#431)
827
+ - b02858af Fix firewall apply_to if assigned with server resource (#455)
828
+ - b595efa6 Fix race condition on server data source test (#446)
829
+ - ff44ac8e Improve handling of "Error: cannot remove subnet because servers are attached to it"
830
+ - 86f5c990 Refactor list data source for datacenter (#444)
831
+ - 984c2e3b Refactor list data source for locations
832
+ - 32000fcb Refactor list data source for server types
833
+ - 2c8ad4f4 Refactor list data source for ssh keys (#438)
834
+ - b5f5073e Remove testing & official support of Terraform < 1.0
835
+ - 7e4746f1 hcloud_firewall resource & datasource: Add apply_to possibility
836
+ - 54394aea hcloud_rdns: Fix nil pointer when resource does not exist
837
+
838
+ ## v1.30.0
839
+
840
+ ### What's Changed
841
+
842
+ - 985c1db9 Add dns ptr support for load balancer
843
+ - 13421a6a Update docs
844
+ - ce6982e0 Use go 1.17 for tests & builds
845
+
846
+ ## v1.29.0
847
+
848
+ ### What's Changed
849
+
850
+ - f0e2e3c1 Fix date format for certificate states
851
+ - e19f2d76 Placement groups (#426)
852
+ - 151a0b6a Update hcloud_firewall documentation on how to define port range
853
+
854
+ ## v1.28.1
855
+
856
+ ### What's Changed
857
+
858
+ - 93059571 Add missing firewall rule description docs
859
+ - 9abc5d7e Fix firewall rule description
860
+
861
+ ## v1.28.0
862
+
863
+ ### What's Changed
864
+
865
+ - 92a07cd0 Add description field to firewall rules
866
+ - a0a90b8f Increase amount of retries on firewall deletion
867
+
868
+ ## v1.27.2
869
+
870
+ ### What's Changed
871
+
872
+ - f397c38d Add a feature request template
873
+ - b4619110 Fix hcloud_snapshot resource documentation
874
+ - 8d204641 Fix spelling and grammar mistakes
875
+ - 219a6355 Update hcloud-go to v1.28.0
876
+
877
+ ## v1.27.1
878
+
879
+ ### What's Changed
880
+
881
+ - 71f995bf Add issue template
882
+ - ad88a85f Add missing docs about the network attribute/argument on hcloud_server and implement the datatransformation of the network for the attribute
883
+ - 72a5fb48 Add testcase
884
+ - 449710e9 Add tests for terraform 1.0
885
+ - 0cfa7c88 Docs: Add missing firewall_ids to hcloud_server resource and datasource
886
+ - 80ee6fab Docs: Improve documentation for hcloud_firewall resource to include information about port ranges and the `any` keyword (#381)
887
+ - 8f1c5c16 Docs: Mark example "hcloud_token" variable as sensitive
888
+ - b941c699 Fix non iso8601 timestamp in hcloud_image datasource
889
+ - 993b3cd2 Fix tests
890
+ - e775c362 Generate Changelog with goreleaser
891
+ - 1795d377 Improve error messages from hcloud-go
892
+ - 895813eb Improve hcloud_rdns resource documentation and validation of fields `server_id` and `floating_ip_id` that should be mutually exclusive
893
+ - 3cdd11b4 Increase create timeout for servers and snapshots
894
+ - 68a3d6a6 Move logic around to make it more readable
895
+ - faa15532 Network Attachments: Retry on ServiceError and NoSubnetAvailable Error
896
+ - edbddcfe Update dependencies
897
+ - 4027dd6f Update terraform SDK to v2.7.0
898
+
899
+
900
+ ## 1.27.0 (June 17, 2021)
901
+
902
+ FEATURES:
903
+ * `hcloud_firewall` resource & datasource: Support GRE & ESP protocol in firewall rules
904
+
905
+ ## 1.26.2 (May 28, 2021)
906
+
907
+ BUG FIXES:
908
+
909
+ * Fix invalid checksum for release 1.26.1
910
+
911
+ ## 1.26.1 (May 28, 2021)
912
+
913
+ BUG FIXES:
914
+ * `hcloud_firewall` datasource: `destination_ips` missed in definition
915
+ * `hcloud_certificate` resource: panic when parsing certificate chains
916
+ (#359)
917
+
918
+ ## 1.26.0 (March 30, 2021)
919
+
920
+ * **New Resource** `hcloud_managed_certificate`
921
+ * **New Resource** `hcloud_uploaded_certificate`
922
+ * **Deprecated Resource** `hcloud_certificate`
923
+
924
+ ## 1.25.2 (March 16, 2021)
925
+
926
+ BUG FIXES:
927
+ * `hcloud_firewall` resource: plugin normalized CIDRs silently.
928
+
929
+ ## 1.25.1 (March 10, 2021)
930
+
931
+ BUG FIXES:
932
+ * `hcloud_firewall` documentation: fix name of `firewall_ids` property.
933
+
934
+ ## 1.25.0 (March 10, 2021)
935
+
936
+ FEATURES:
937
+ * **New Resource**: `hcloud_snapshot`
938
+ * **New Resource**: `hcloud_firewall`
939
+ * **New Data Source**: `hcloud_firewall`
940
+
941
+ BUG FIXES:
942
+ * `hcloud_server` resource: image had a wrong type (int instead of string) when a server was created from a snapshot
943
+ * `hcloud_load_balancer_target` resource: force recreation when changing a target attribute (server_id, ip or label_selector)
944
+
945
+ NOTES:
946
+ * The provider is now built with Go 1.16
947
+
948
+ ## 1.24.1 (February 04, 2021)
949
+
950
+ BUG FIXES:
951
+ * `hcloud_volume` datasource: id is now marked as computed to allow more setups where the id is unknown
952
+ * `hcloud_ssh_key` datasource: id is now marked as computed to allow more setups where the id is unknown
953
+ * `hcloud_network` datasource: id is now marked as computed to allow more setups where the id is unknown
954
+ * `hcloud_image` datasource: id is now marked as computed to allow more setups where the id is unknown
955
+ * `hcloud_certificate` datasource: id is now marked as computed to allow more setups where the id is unknown
956
+ * `hcloud_volume` resource: Automount is now working when you attach an already existing volume to a server.
957
+
958
+ ## 1.24.0 (January 12, 2021)
959
+
960
+ FEATURES:
961
+ * **New Datasource**: `hcloud_server_type`
962
+ * **New Datasource**: `hcloud_server_types`
963
+ * New `network` property for `hcloud_server` resource.
964
+
965
+ BUG FIXES:
966
+ * `hcloud_volume` resource: A race condition was fixed, that was called when you tried to create multiple volumes for a single server
967
+ * `hcloud_locations` datasource: Use a stable value as IDs instead of a timestamp. We now use a hash of the concatenation of all location IDs as ID
968
+ * `hcloud_datacenters` datasource: Use a stable value as IDs instead of a timestamp. We now use a hash of the concatenation of all datacenters IDs as ID
969
+
970
+ Notes:
971
+ * This release is tested against Terraform 0.13.x and 0.14.x. Testing on 0.12.x was removed, therefore Terraform 0.12.x is no longer officially supported
972
+
973
+ ## 1.23.0 (November 03, 2020)
974
+
975
+ FEATURES:
976
+ * `hcloud_network_subnet` supports vSwitch Subnets
977
+
978
+ Notes:
979
+ * The provider was updated to use the Terraform Plugin SDK v2.
980
+
981
+ ## 1.22.0 (October 05, 2020)
982
+
983
+ FEATURES:
984
+
985
+ * All `hcloud_*` resources are now importable.
986
+
987
+ BUG FIXES:
988
+ * `hcloud_rdns` resource: It is now possible to import the resource as documented.
989
+
990
+ ## 1.21.0 (September 09, 2020)
991
+
992
+ CHANGED:
993
+
994
+ * Un-deprecate `network_id` property of `hcloud_load_balancer_network` and
995
+ `hcloud_server_network` resources.
996
+ * Change module path from
997
+ `github.com/terraform-providers/terraform-provider-hcloud` to
998
+ `github.com/hetznercloud/terraform-provider-hcloud`
999
+
1000
+ ## 1.20.1 (August 18, 2020)
1001
+ BUG FIXES:
1002
+
1003
+ * `hcloud_certificate` resource: Updating the certificate needs to recreate the certificate.
1004
+
1005
+ NOTES:
1006
+ * The provider is now build with Go 1.15
1007
+ * We overhauled parts of the underlying test suite
1008
+
1009
+ ## 1.20.0 (August 10, 2020)
1010
+
1011
+ FEATURES:
1012
+
1013
+ * Allow updating/resizing a Load Balancer through the
1014
+ `load_balancer_type` of `hcloud_load_balancer` resource
1015
+ * Add support for Load Balancer Label Selector and IP targets.
1016
+
1017
+ ## 1.19.2 (July 28, 2020)
1018
+
1019
+ CHANGED:
1020
+
1021
+ * Deprecate `network_id` property of `hcloud_server_network` and
1022
+ `hcloud_load_balancer_network` resources. Introduce a `subnet_id`
1023
+ property as replacement.
1024
+
1025
+ Both resources require a subnet to be created. Since `network_id`
1026
+ references the network and not the subnet there is no explicit
1027
+ dependency between those resources. This leads to Terraform creating
1028
+ those resources in parallel, which creates a race condition. Users
1029
+ stuck with the `network_id` property can create an explicit dependency
1030
+ on the subnet using `depends_on` to work around this issue.
1031
+
1032
+ BUG FIXES:
1033
+ * Enable and Disable `proxyprotocol` on a Load Balancer didn't work after creation
1034
+ * Deleted all Load Balancer services when you changed the `listen_port` of one service
1035
+ * `hcloud_load_balancer_target` was not idempotent when you add a target that was already defined
1036
+
1037
+ NOTES:
1038
+ * Update to hcloud-go v1.19.0 to fix the bad request issue
1039
+
1040
+ ## 1.19.1 (July 16, 2020)
1041
+
1042
+ NOTES:
1043
+
1044
+ * First release under new terraform registry
1045
+ * Provider was moved to https://github.com/hetznercloud/terraform-provider-hcloud
1046
+
1047
+ ## 1.19.0 (July 10, 2020)
1048
+
1049
+ BUG FIXES:
1050
+
1051
+ * Update to hcloud-go v1.18.2 to fix a conflict issue
1052
+ * Ensure `alias_ip` retain the same order.
1053
+
1054
+ NOTES:
1055
+
1056
+ * This release uses Terraform Plugin SDK v1.15.0.
1057
+
1058
+ ## 1.18.1 (July 02, 2020)
1059
+
1060
+ BUG FIXES
1061
+
1062
+ * Set correct defaults for `cookie_name` and `cookie_lifetime`
1063
+ properties of `hcloud_load_balancer_service`.
1064
+ * Remove unsupported `https` protocol from health check documentation.
1065
+ * Force recreate of `hcloud_network` if `ip_range` changes.
1066
+
1067
+ ## 1.18.0 (June 30, 2020)
1068
+
1069
+ FEATURES:
1070
+
1071
+ * **New Resource**: `hcloud_load_balancer_target` which allows to add a
1072
+ target to a load balancer. This resource extends the `target` property
1073
+ of the `hcloud_load_balancer` resource. `hcloud_load_balancer_target`
1074
+ should be preferred over the `target` property of
1075
+ `hcloud_load_balancer`.
1076
+
1077
+ ## 1.17.0 (June 22, 2020)
1078
+
1079
+ FEATURES:
1080
+
1081
+ * **New Datasource**: `hcloud_load_balancer`
1082
+ * **New Resource**: `hcloud_load_balancer`
1083
+ * **New Resource**: `hcloud_load_balancer_service`
1084
+ * **New Resource**: `hcloud_load_balancer_network`
1085
+
1086
+ BUG FIXES:
1087
+
1088
+ * resources/hcloud_network_route: Fix panic when trying to lookup an already deleted Network route
1089
+
1090
+ ## 1.16.0 (March 24, 2020)
1091
+
1092
+ BUG FIXES:
1093
+ * resource/hcloud_ssh_key: Fix panic when we update labels in SSH keys
1094
+ * resource/hcloud_server_network: Fix alias ips ignored on creation of server network
1095
+ * resource/hcloud_server: Use first assigned `ipv6_address` as value instead of the network address. **Attention: This can be a breaking change**
1096
+
1097
+ NOTES:
1098
+ * This release uses Terraform Plugin SDK v1.8.0.
1099
+
1100
+ ## 1.15.0 (November 11, 2019)
1101
+
1102
+ IMPROVEMENTS:
1103
+
1104
+ * resources/hcloud_server: Add retry mechanism for enabling the rescue mode.
1105
+
1106
+ NOTES:
1107
+ * This release uses Terraform Plugin SDK v1.3.0.
1108
+
1109
+ ## 1.14.0 (October 01, 2019)
1110
+
1111
+ NOTES:
1112
+ * This release uses the Terraform Plugin SDK v1.1.0.
1113
+
1114
+ ## 1.13.0 (September 19, 2019)
1115
+
1116
+ IMPROVEMENTS:
1117
+
1118
+ * resources/hcloud_floating_ip: Add `name` attribute to get or set the name of a Floating IP.
1119
+ * datasource/hcloud_floating_ip: Add `name` attribute to get Floating IPs by their name.
1120
+
1121
+ NOTES:
1122
+
1123
+ * This release is Terraform 0.12.9+ compatible.
1124
+ * Updated hcloud-go to `v1.16.0`
1125
+ * The provider is now tested and build with Go `1.13`
1126
+
1127
+ ## 1.12.0 (July 29, 2019)
1128
+
1129
+ FEATURES:
1130
+
1131
+ * **New Datasource**: `hcloud_ssh_keys` Lookup all SSH keys.
1132
+
1133
+ IMPROVEMENTS:
1134
+
1135
+ * resources/hcloud_server_network: Add `mac_address` attribute to get the mac address of the Network interface.
1136
+
1137
+ BUG FIXES:
1138
+
1139
+ * Fix an error on server creation, when an iso id was given instead of an iso name.
1140
+
1141
+ NOTES:
1142
+
1143
+ * This release is Terraform 0.12.5+ compatible.
1144
+ * Updated hcloud-go to `v1.15.1`
1145
+ * Added hcloud-go request debugging when using `TF_LOG`.
1146
+
1147
+ ## 1.11.0 (July 10, 2019)
1148
+
1149
+ FEATURES:
1150
+
1151
+ * **New Resource**: `hcloud_network` Manage Networks.
1152
+ * **New Resource**: `hcloud_network_subnet` Manage Networks Subnets.
1153
+ * **New Resource**: `hcloud_network_route` Manage Networks Routes.
1154
+ * **New Resource**: `hcloud_server_network` Manage attachment between servers and Networks.
1155
+ * **New Datasource**: `hcloud_network` Lookup Networks.
1156
+
1157
+ ## 1.10.0 (May 14, 2019)
1158
+
1159
+ NOTES:
1160
+ * This release is Terraform 0.12-RC1+ compatible.
1161
+
1162
+ ## 1.9.0 (March 15, 2019)
1163
+
1164
+ IMPROVEMENTS:
1165
+
1166
+ * datasource/hcloud_server: Add `with_status` attribute to get images by their status.
1167
+ * datasource/hcloud_image: Add `with_status` attribute to get servers by their status.
1168
+ * datasource/hcloud_volume: Add `with_status` attribute to get volumes by their status.
1169
+
1170
+ * Added `with_selector` to all datasources that support label selectors.
1171
+
1172
+ NOTES:
1173
+
1174
+ * **Deprecation**: datasource/hcloud_server: `selector`, will be removed in the near future.
1175
+ * **Deprecation**: datasource/hcloud_floating_ip: `selector`, will be removed in the near future.
1176
+ * **Deprecation**: datasource/hcloud_image: `selector`, will be removed in the near future.
1177
+ * **Deprecation**: datasource/hcloud_ssh_key: `selector`, will be removed in the near future.
1178
+ * **Deprecation**: datasource/hcloud_volume: `selector`, will be removed in the near future.
1179
+
1180
+ ## 1.8.1 (March 12, 2019)
1181
+
1182
+ BUG FIXES:
1183
+ * Fix an error on server creation, when a image id was given instead of a image name.
1184
+ * Fix an missing error on `terraform plan`, when using an image name which does not exists.
1185
+
1186
+ ## 1.8.0 (February 06, 2019)
1187
+
1188
+ FEATURES:
1189
+ * **New Datasource**: `hcloud_server` Lookup a server.
1190
+
1191
+ IMPROVEMENTS:
1192
+ * Add API token length validation
1193
+
1194
+ ## 1.7.0 (December 18, 2018)
1195
+
1196
+ FEATURES:
1197
+ * **New Datasource**: `hcloud_location` Lookup a location.
1198
+ * **New Datasource**: `hcloud_locations` Lookup all locations.
1199
+ * **New Datasource**: `hcloud_datacenter` Lookup a datacenter.
1200
+ * **New Datasource**: `hcloud_datacenters` Lookup all datacenters.
1201
+ * Volume Automounting is now available for `hcloud_volume` and `hcloud_volume_attachment`
1202
+
1203
+ ## 1.6.0 (December 03, 2018)
1204
+
1205
+ IMPROVEMENTS:
1206
+ * datasource/hcloud_image: Add `most_recent` attribute to get the latest image when multiple images has the same label.
1207
+
1208
+ BUG FIXES:
1209
+ * Fix an error on volume_attachment creation, when server was locked.
1210
+
1211
+ ## 1.5.0 (November 16, 2018)
1212
+
1213
+ FEATURES:
1214
+ * **New Resource**: `hcloud_volume_attachment` Manage the attachment between volumes and servers.
1215
+
1216
+ IMPROVEMENTS:
1217
+ * resources/hcloud_server: Add `backups` attribute to enable or disable backups.
1218
+
1219
+ NOTES:
1220
+ * **Read Only**: resources/hcloud_server: `backup_window`, removed the ability to set the attribute. This attribute is now read only.
1221
+ * Updated hcloud-go to `v1.11.0`
1222
+
1223
+ ## 1.4.0 (October 18, 2018)
1224
+
1225
+ FEATURES:
1226
+
1227
+ * **New Resource**: `hcloud_volume` Manage volumes.
1228
+ * **New Datasource**: `hcloud_volume` Lookup volumes.
1229
+
1230
+ NOTES:
1231
+
1232
+ * **Deprecation**: resource/hcloud_server: `backup_window`, will be removed in the near future.
1233
+
1234
+ ## 1.3.0 (September 12, 2018)
1235
+
1236
+ FEATURES:
1237
+
1238
+ - **New Resource**: `hcloud_rnds` Manage reverse DNS entries for servers and Floating IPs.
1239
+ * **New Resource**: `hcloud_floating_ip_assignment` Manage the association between Floating IPs and servers.
1240
+ - **New Datasource**: `hcloud_floating_ip` Lookup Floating ips.
1241
+ - **New Datasource**: `hcloud_image` Lookup images.
1242
+ - **New Datasource**: `hcloud_ssh_key` Lookup SSH Keys.
1243
+ - **New Provider Config**: `poll_interval` Configures the interval in which actions are polled by the client. Default `500ms`. Increase this interval if you run into rate limiting errors.
1244
+
1245
+ IMPROVEMENTS:
1246
+
1247
+ * resource/hcloud_server: Add `ipv6_network` attribute.
1248
+
1249
+ NOTES:
1250
+
1251
+ * Updated hcloud-go to `v1.9.0`
1252
+
1253
+ ## 1.2.0 (June 07, 2018)
1254
+
1255
+ NOTES:
1256
+
1257
+ * Switched from MIT licence to MPL2
1258
+ * removed `reverse_dns` property of `hcloud_floating_ip`, because it was not useable, see https://github.com/hetznercloud/terraform-provider-hcloud/issues/32
1259
+ * improved test coverage
1260
+ * updated terraform to `v0.11.7`
1261
+ * updated hcloud-go to `v1.6.0`
1262
+ * added log when waiting for an action to complete
1263
+
1264
+ BUG FIXES:
1265
+
1266
+ * delete records from state that are invalid or are not found by the server
1267
+ * resource update methods return the result of the read method
1268
+
1269
+ ## 1.1.0 (March 2, 2018)
1270
+
1271
+ * Save hashsum of `user_data`, existing state is migrated
1272
+ * update hcloud-go to v1.4.0
1273
+ * update terraform from v0.11.2 to v0.11.3
1274
+
1275
+ ## 1.0.0 (January 30, 2018)
1276
+
1277
+ * Initial release