Skip to content

Update Terraform hcloud to v1.55.0

Renovate Bot requested to merge renovate/hcloud-1.x into master

This MR contains the following updates:

Package Type Update Change
hcloud (source) required_provider minor 1.37.0 -> 1.55.0

Release Notes

hetznercloud/terraform-provider-hcloud (hcloud)

v1.55.0

Compare Source

Features
  • support managing records of type SOA (#​1225)
  • firewall: importing firewall attachments (#​1231)
  • add txt_record helper function (#​1227)
Bug Fixes
  • load-balancer: mark health check retries as required (#​1232)

v1.54.0

Compare Source

DNS API Beta

This release adds support for the new DNS API.

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 for more details.

Future minor releases of this project may include breaking changes for features that are related to the DNS API.

See the DNS API Beta changelog for more details.

Examples

resource "hcloud_zone" "example" {
  name = "example.com"
  mode = "primary"
  labels = {
    key = "value"
  }
}

resource "hcloud_zone_rrset" "apex_a_example" {
  zone = hcloud_zone.example.name
  name = "@​"
  type = "A"
  records = [
    { value = "201.78.10.45", comment = "server1" },
  ]
}
Features

v1.53.1

Compare Source

Bug Fixes
  • show warnings using diagnostics instead of logs (#​1197)
  • also check server type deprecation after server creation (#​1201)

v1.53.0

Compare Source

Server Types now depend on Locations.

  • We added a new locations property to the Server Types resource. The new property defines a list of supported Locations and additional per Locations details such as deprecations information.

  • We deprecated the deprecation property from the Server Types resource. The property will gradually be phased out as per Locations deprecations are being announced. Please use the new per Locations deprecation information instead.

See our changelog for more details.

Upgrading

// Before
data "hcloud_server_type" "main" {
  name = "cx22"
}

check "server_type" {
  assert {
    condition     = !data.hcloud_server_type.main.is_deprecated
    error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated"
  }
}
// After
data "hcloud_location" "main" {
  name = "fsn1"
}

data "hcloud_server_type" "main" {
  name = "cx22"
}

locals {
  server_type_location = one([
    for o in data.hcloud_server_type.main.locations : o
    if o.name == data.hcloud_location.main.name
  ])
}

check "server_type_location" {
  assert {
    condition     = local.server_type_location != null
    error_message = "Server Type ${data.hcloud_server_type.main.name} does not exists in Location ${data.hcloud_location.main.name}"
  }
  assert {
    condition     = !local.server_type_location.is_deprecated
    error_message = "Server Type ${data.hcloud_server_type.main.name} is deprecated in Location ${data.hcloud_location.main.name}"
  }
}
Features
  • add category property to server type (#​1184)
  • per locations server types (#​1193)
Bug Fixes
  • ensure exponential poll backoff is configured (#​1160)
  • handle not found volume deletion (#​1189)
  • wait for floating_ip assign action to complete (#​1195)
  • add experimental features maturity (#​1191)

v1.52.0

Compare Source

Features
  • drop support for terraform v1.9 (#​1125)
  • drop support for terraform v1.10 (#​1126)
  • add support for terraform v1.11 (#​1127)
  • add support for terraform v1.12 (#​1128)
  • warn when experimental features are used (#​1155)
  • drop support for opentofu v1.7 (#​1158)
  • add support for opentofu v1.10 (#​1159)

v1.51.0

Compare Source

Features
  • server: add private networks in data_source (#​1115)

v1.50.1

Compare Source

Bug Fixes
  • missing assignee_type in assign primary ip call (#​1117)

v1.50.0

Compare Source

In this release, we upgraded the underlying Hetzner Cloud API client (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.

Features
  • drop support for terraform v1.8 (#​1066)
  • add support for terraform v1.10 (#​1067)
  • add support for opentofu v1.9 (#​1071)
Bug Fixes

v1.49.1

Compare Source

Bug Fixes

v1.49.0

Compare Source

Features
Bug Fixes

v1.48.1

Compare Source

Bug Fixes
  • missing deprecation info in server type list data source (#​984) (c12560e)

v1.48.0

Compare Source

Features
Bug Fixes

v1.47.0

Compare Source

Features
Bug Fixes
  • ssh-key: data inconsistency with empty label objects (#​922) (7e1bf2c), closes #​921
  • subnet: handle new error message for deleting subnets with attached resources (#​923) (932c47b)

v1.46.1

Compare Source

Bug Fixes

v1.45.0

Compare Source

Features
  • provider: choose between constant & exponential backoff for actions (#​798) (fa7ea1f)
  • server: add primary_disk_size attribute in resource and datasource (#​801) (98c2f2d)
Bug Fixes

v1.44.1

Compare Source

Bug Fixes

v1.44.0

Compare Source

Features
Bug Fixes
  • poll_interval not working as expected (6ef7467)

v1.43.0

Compare Source

Features

v1.42.1

Compare Source

Bug Fixes
  • primary_ip: list data source only returned first 25 IPs (#​729) (62e9781)
  • server: panic when passing empty string as ssh key (#​736) (d57b386)
  • server: Return nil instead of "<nil>" with IPv4/IPv6 disabled (#​723) (6cd2a37)
  • use exponential backoff when retrying actions (#​735) (d51ee4a)

v1.42.0

Compare Source

Features
Bug Fixes

v1.41.0

Compare Source

Features
  • network: add support for exposing routes to vswitch connection (#​703) (f213550)

v1.40.0

Compare Source

Features
Bug Fixes
  • server: invalid ipv6_address nil1 when no IPv6 is used (#​689) (2912f45)

v1.39.0

Compare Source

What's Changed

Full Changelog: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.2...v1.39.0

v1.38.2

Compare Source

What's Changed

Full Changelog: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.1...v1.38.2

v1.38.1

Compare Source

Affordable, sustainable & powerful! rocketYou can now get one of our Arm64 CAX servers to optimize your operations while minimizing your costs! Discover Ampere’s efficient and robust Arm64 architecture and be ready to get blown away with its performance. sunglasses

Learn more: https://www.hetzner.com/news/arm64-cloud

What's Changed

Full Changelog: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.38.0...v1.38.1

v1.38.0

Compare Source

Affordable, sustainable & powerful! 🚀You can now get one of our Arm64 CAX servers to optimize your operations while minimizing your costs! Discover Ampere’s efficient and robust Arm64 architecture and be ready to get blown away with its performance. 😎

Learn more: https://www.hetzner.com/news/arm64-cloud

What's Changed

Full Changelog: https://github.com/hetznercloud/terraform-provider-hcloud/compare/v1.37.0...v1.38.0


Configuration

📅 Schedule: 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 MR is behind base branch, or you tick the rebase/retry checkbox.

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


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

This MR has been generated by Renovate Bot.

Edited by Renovate Bot

Merge request reports

Loading