Files
infrastructure/tf-stage1/versions.tf
Kristian Klausen 95a4b4610e tf-stage1: Migrate DNS to Hetzner Console and official TF provider
Hetzner is moving DNS into Hetzner Console and the old DNS console will
be shutdown in May 2026[1].

Let's be proactive and migrate early. The official hcloud TF provider
supports the new DNS API[2], so we can and need to switch away from the
current unmaintained provider[3].

[1] https://docs.hetzner.com/networking/dns/faq/beta
[2] https://github.com/hetznercloud/terraform-provider-hcloud/releases/tag/v1.54.0
[3] https://github.com/timohirt/terraform-provider-hetznerdns

Fix #724
2025-10-20 20:06:43 +02:00

15 lines
241 B
Terraform

terraform {
required_providers {
external = {
source = "hashicorp/external"
}
hcloud = {
source = "hetznercloud/hcloud"
}
minio = {
source = "aminueza/minio"
}
}
required_version = ">= 0.13"
}