mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2026-03-28 06:26:08 +01:00
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
20 lines
593 B
HCL
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"
|
|
}
|
|
}
|
|
}
|