chore(deps): update terraform hcloud to v1.68.0 #58

Open
botaniker wants to merge 1 commit from renovate/hcloud-1.x into main
Member

This PR contains the following updates:

Package Type Update Change OpenSSF
hcloud (source) required_provider minor 1.66.01.68.0 OpenSSF Scorecard

Release Notes

hetznercloud/terraform-provider-hcloud (hcloud)

v1.68.0

Compare Source

Compare to previous version

Features
Bug Fixes

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

v1.66.1

Compare Source

Compare to previous version

Bug Fixes
  • primary_ip: only validate assignee attributes when known (#​1487) (8fc1a69)
  • server: inconsistent image attribute when using data source (#​1489) (3fefa12)

Configuration

📅 Schedule: (UTC)

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 Renovate Bot. The local configuration can be found in the SI Renovate Bot repository.

This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [hcloud](https://registry.terraform.io/providers/hetznercloud/hcloud) ([source](https://github.com/hetznercloud/terraform-provider-hcloud)) | required_provider | minor | `1.66.0` → `1.68.0` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/hetznercloud/terraform-provider-hcloud/badge)](https://securityscorecards.dev/viewer/?uri=github.com/hetznercloud/terraform-provider-hcloud) | --- ### Release Notes <details> <summary>hetznercloud/terraform-provider-hcloud (hcloud)</summary> ### [`v1.68.0`](https://github.com/hetznercloud/terraform-provider-hcloud/blob/HEAD/CHANGELOG.md#v1680) [Compare Source](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.67.0...v1.68.0) [Compare to previous version](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.67.0...v1.68.0) ##### Features - **load\_balancer\_type**: add deprecation details and warnings ([#&#8203;1512](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1512)) ([44a81e1](https://github.com/hetznercloud/terraform-provider-hcloud/commit/44a81e1431428444325c8a253a19bafa510ea73d)) - **server\_type**: add deprecation warnings ([#&#8203;1512](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1512)) ([44a81e1](https://github.com/hetznercloud/terraform-provider-hcloud/commit/44a81e1431428444325c8a253a19bafa510ea73d)) ##### Bug Fixes - **zone\_record**: set identity after read/update ([#&#8203;1507](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1507)) ([daf4b85](https://github.com/hetznercloud/terraform-provider-hcloud/commit/daf4b858c6f97b44d77beef9f3a625bf00b28780)) ### [`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)) ### [`v1.66.1`](https://github.com/hetznercloud/terraform-provider-hcloud/blob/HEAD/CHANGELOG.md#v1661) [Compare Source](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.66.0...v1.66.1) [Compare to previous version](https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.66.0...v1.66.1) ##### Bug Fixes - **primary\_ip**: only validate assignee attributes when known ([#&#8203;1487](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1487)) ([8fc1a69](https://github.com/hetznercloud/terraform-provider-hcloud/commit/8fc1a690182cdef2d8a7c44fefd97ead7099b189)) - **server**: inconsistent image attribute when using data source ([#&#8203;1489](https://github.com/hetznercloud/terraform-provider-hcloud/issues/1489)) ([3fefa12](https://github.com/hetznercloud/terraform-provider-hcloud/commit/3fefa1241435a7760f5ee06663e3d6fa9b9ce7d4)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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 [Renovate Bot](https://github.com/renovatebot/renovate). The local configuration can be found in the [SI Renovate Bot repository](https://git.shivering-isles.com/shivering-isles/infrastructure-gitops/src/branch/main/apps/k8s01/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNjIuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI3Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
chore(deps): update terraform hcloud to v1.66.1
Some checks failed
gitops-pr-validation Pipeline failed
21c0bbb0e1
Author
Member

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks
### Branch automerge failure This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead. ___ * Branch has one or more failed status checks
botaniker force-pushed renovate/hcloud-1.x from 21c0bbb0e1
Some checks failed
gitops-pr-validation Pipeline failed
to 65cb57637f
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-17 06:09:04 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from 65cb57637f
All checks were successful
gitops-pr-validation Pipeline completed successfully
to d986c3caad
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-17 06:22:40 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from d986c3caad
All checks were successful
gitops-pr-validation Pipeline completed successfully
to a16961ab2c
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-21 06:07:26 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from a16961ab2c
All checks were successful
gitops-pr-validation Pipeline completed successfully
to cd3d5ca029 2026-07-22 06:07:34 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from cd3d5ca029 to 5d9ab4a1e7
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-23 06:06:45 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from 5d9ab4a1e7
All checks were successful
gitops-pr-validation Pipeline completed successfully
to aea83222a3
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-24 06:08:15 +00:00
Compare
botaniker force-pushed renovate/hcloud-1.x from aea83222a3
All checks were successful
gitops-pr-validation Pipeline completed successfully
to 5dfda4a7a0
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-25 06:07:11 +00:00
Compare
botaniker changed title from chore(deps): update terraform hcloud to v1.66.1 to chore(deps): update terraform hcloud to v1.67.0 2026-07-25 06:07:13 +00:00
botaniker force-pushed renovate/hcloud-1.x from 5dfda4a7a0
All checks were successful
gitops-pr-validation Pipeline completed successfully
to 768868fa5f
All checks were successful
gitops-pr-validation Pipeline completed successfully
2026-07-29 06:11:26 +00:00
Compare
botaniker changed title from chore(deps): update terraform hcloud to v1.67.0 to chore(deps): update terraform hcloud to v1.68.0 2026-07-29 06:11:27 +00:00
All checks were successful
gitops-pr-validation Pipeline completed successfully
Required
Details
This pull request doesn't have enough approvals yet. 0 of 1 approvals granted.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/hcloud-1.x:renovate/hcloud-1.x
git switch renovate/hcloud-1.x
Sign in to join this conversation.
No reviewers
No labels
No milestone
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
shivering-isles/infrastructure-gitops!58
No description provided.