Add CAA records

This commit is contained in:
Jake Howard
2023-05-07 18:11:23 +01:00
parent 3a8031cba4
commit 1b3dfb85bb
3 changed files with 36 additions and 0 deletions

View File

@ -41,3 +41,13 @@ resource "gandi_livedns_record" "orngone_apex" {
linode_instance.casey.ip_address
]
}
resource "gandi_livedns_record" "orngone_caa" {
zone = gandi_livedns_domain.orngone.id
name = "@"
type = "CAA"
ttl = 3600
values = [
"0 issue \"letsencrypt.org\""
]
}