self-hosting/terraform/config.tf
Paul-Henri Froidmont 02e8e936c2
Migrate DNS to official hcloud provider and fix mail IPv6 deliverability
Switched DNS management from timohirt/hetznerdns to official hetznercloud/hcloud RRSet resources, imported existing records, and removed legacy provider config. Also enabled mail.banditlair.com AAAA with matching rDNS to satisfy Gmail IPv6 sender checks
2026-03-27 02:32:45 +01:00

20 lines
593 B
HCL

terraform {
backend "http" {
address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod"
lock_address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod/lock"
lock_method = "POST"
unlock_address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod/lock"
unlock_method = "DELETE"
username = "phfroidmont"
}
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.60"
}
null = {
source = "hashicorp/null"
version = "~> 3.2"
}
}
}