Add CAA records
/ terraform (push) Successful in 1m10s Details
/ ansible (push) Successful in 1m57s Details

This commit is contained in:
Jake Howard 2023-05-07 18:11:23 +01:00
parent 3a8031cba4
commit 1b3dfb85bb
Signed by: jake
GPG Key ID: 57AFB45680EDD477
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\""
]
}

View File

@ -204,3 +204,16 @@ resource "cloudflare_record" "jakehowardtech_collabora" {
type = "A"
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"
}
}

View File

@ -260,3 +260,16 @@ resource "cloudflare_record" "theorangeonenet_mastodon" {
type = "A"
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"
}
}