Add shorter domain for whoami

This commit is contained in:
Jake Howard 2024-09-22 15:01:55 +01:00
parent 3e355e6715
commit 4e07e1c8dc
No known key found for this signature in database
GPG key ID: 57AFB45680EDD477
2 changed files with 12 additions and 1 deletions

View file

@ -21,3 +21,14 @@ resource "gandi_livedns_record" "orngone_caa" {
"0 issue \"letsencrypt.org\""
]
}
resource "gandi_livedns_record" "orngone_who" {
zone = gandi_livedns_domain.orngone.id
name = "who"
type = "CNAME"
ttl = 3600
values = [
"${cloudflare_record.sys_domain_pve.hostname}."
]
}