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

@ -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"
}
}