Add CAA records
This commit is contained in:
parent
3a8031cba4
commit
1b3dfb85bb
3 changed files with 36 additions and 0 deletions
|
@ -41,3 +41,13 @@ resource "gandi_livedns_record" "orngone_apex" {
|
||||||
linode_instance.casey.ip_address
|
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\""
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -204,3 +204,16 @@ resource "cloudflare_record" "jakehowardtech_collabora" {
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_record" "jakehowardtech_caa" {
|
||||||
|
zone_id = cloudflare_zone.jakehowardtech.id
|
||||||
|
name = "@"
|
||||||
|
type = "CAA"
|
||||||
|
ttl = 1
|
||||||
|
|
||||||
|
data = {
|
||||||
|
tag = "issue"
|
||||||
|
flags = 0
|
||||||
|
value = "letsencrypt.org"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -260,3 +260,16 @@ resource "cloudflare_record" "theorangeonenet_mastodon" {
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "cloudflare_record" "theorangeonenet_caa" {
|
||||||
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
|
name = "@"
|
||||||
|
type = "CAA"
|
||||||
|
ttl = 1
|
||||||
|
|
||||||
|
data = {
|
||||||
|
tag = "issue"
|
||||||
|
flags = 0
|
||||||
|
value = "letsencrypt.org"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue