chore(deps): update terraform hcloud to v1.67.0 #10

Merged
cpressland merged 1 commit from renovate/hcloud-1.x into main 2026-07-27 10:18:00 +01:00
Contributor

This PR contains the following updates:

Package Type Update Change
hcloud (source) required_provider minor 1.66.11.67.0

Release Notes

hetznercloud/terraform-provider-hcloud (hcloud)

v1.67.0

Compare Source

Compare to previous version

Removed datacenter from Server and Primary IP

The deprecated datacenter attribute was marked for removal from the Server and Primary IP resources/data sources. You must use the location attribute instead. Since the property was already removed from the Hetzner Cloud API, we do not consider this a breaking change (see changelog entry).

[!IMPORTANT]
Action required: Please update all configuration that uses the datacenter attribute to use the location attribute instead.

Before:

resource "hcloud_server" "main" {
  // ...
  datacenter = "hel1-dc1"
}

resource "hcloud_primary_ip" "main" {
  // ...
  datacenter = "hel1-dc1"
}

After:

resource "hcloud_server" "main" {
  // ...
  location = "hel1"
}

resource "hcloud_primary_ip" "main" {
  // ...
  location = "hel1"
}
Features
Bug Fixes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [hcloud](https://search.opentofu.org/provider/hetznercloud/hcloud) ([source](https://github.com/hetznercloud/terraform-provider-hcloud)) | required_provider | minor | `1.66.1` → `1.67.0` | --- ### Release Notes <details> <summary>hetznercloud/terraform-provider-hcloud (hcloud)</summary> ### [`v1.67.0`](https://github.com/hetznercloud/terraform-provider-hcloud/blob/HEAD/CHANGELOG.md#v1670) [Compare Source](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.66.1...v1.67.0) [Compare to previous version](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.66.1...v1.67.0) ##### Removed datacenter from Server and Primary IP The deprecated `datacenter` attribute was marked for removal from the Server and Primary IP resources/data sources. You must use the `location` attribute instead. Since the property was already removed from the Hetzner Cloud API, we do not consider this a breaking change (see [changelog entry](https://docs.hetzner.cloud/changelog#2026-07-01-removing-datacenters)). > \[!IMPORTANT] > **Action required:** Please update all configuration that uses the `datacenter` attribute to use the `location` attribute instead. **Before:** ```tf resource "hcloud_server" "main" { // ... datacenter = "hel1-dc1" } resource "hcloud_primary_ip" "main" { // ... datacenter = "hel1-dc1" } ``` **After:** ```tf resource "hcloud_server" "main" { // ... location = "hel1" } resource "hcloud_primary_ip" "main" { // ... location = "hel1" } ``` ##### Features - remove `datacenter` from primary ips and servers ([#&#8203;1501](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1501)) ([59a48f5](https://github.com/hetznercloud/terraform-provider-hcloud/commit/59a48f599e1477c3f973f06450e9108655ce15d0)) ##### Bug Fixes - **server**: do not validate unknown network config ([#&#8203;1493](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1493)) ([f180913](https://github.com/hetznercloud/terraform-provider-hcloud/commit/f180913124d3df58a25d68e49df671c40194473f)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODAuMyIsInVwZGF0ZWRJblZlciI6IjQzLjI4MC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
cpressland deleted branch renovate/hcloud-1.x 2026-07-27 10:18:00 +01:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
cpressland/tofu!10
No description provided.