Files
base-infra/modules/hetzner/dns/versions.tf
Felix Nehrke 4dfe859ed8 Update DNS-module for Hetzner to use the hcloud-provider
Hetzner's legacy DNS console (dns.hetzner.com) and its old DNS API have
been permanently shut down. All DNS zone management has been migrated
entirely to the main Hetzner Cloud Console.

Since I hadn't made any changes in the last couple of months I was
simply not affected by that change until very recently.
So, this change drops the 3rd-party provider I had used previously and
now applies the official `hcloud`-provider.

The migrations was a bit of a hassle, because I had to manually remove
the obsolete references from the Tofu-state. Then I checked the migrated
sources and decided to simply drop the migrated DNS-zones altogether and
simply run `tofu apply` once more.
2026-06-12 02:28:24 +02:00

11 lines
129 B
HCL

terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.60.0"
}
}
}