mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2026-09-07 02:34:07 +02:00
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
15 lines
241 B
Terraform
15 lines
241 B
Terraform
terraform {
|
|
required_providers {
|
|
external = {
|
|
source = "hashicorp/external"
|
|
}
|
|
hcloud = {
|
|
source = "hetznercloud/hcloud"
|
|
}
|
|
minio = {
|
|
source = "aminueza/minio"
|
|
}
|
|
}
|
|
required_version = ">= 0.13"
|
|
}
|