add CAA record
This commit is contained in:
parent
bfc38c0bf1
commit
454b746534
1 changed files with 12 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue