Update DNS records to alias sys records

This commit is contained in:
Jake Howard
2023-12-31 20:36:46 +00:00
parent 6a23d8cab5
commit e03cc40bf3
3 changed files with 53 additions and 53 deletions

View File

@ -5,10 +5,10 @@ resource "gandi_livedns_domain" "orngone" {
resource "gandi_livedns_record" "orngone_apex" {
zone = gandi_livedns_domain.orngone.id
name = "@"
type = "A"
type = "ALIAS" # Gandi doesn't support CNAME-flattening
ttl = 3600
values = [
linode_instance.casey.ip_address
cloudflare_record.sys_domain_pve.hostname
]
}