add CAA record

This commit is contained in:
Jörg Thalheim 2023-10-21 19:03:32 +02:00 committed by zowoq
parent bfc38c0bf1
commit 454b746534

View file

@ -7,6 +7,18 @@ locals {
]
}
# blocks other CAs from issuing certificates for the domain
resource "cloudflare_record" "nix-community-org-caa" {
zone_id = local.nix_community_zone_id
name = "@"
type = "CAA"
data {
flags = "0"
tag = "issue"
value = "letsencrypt.org"
}
}
resource "cloudflare_record" "nix-community-org-build01-A" {
zone_id = local.nix_community_zone_id
name = "build01"