Files
terraform-cloudflare-dns-zo…/records_caa.tf
Hubert Cornet d6fd98accd
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 17s
Ajouter records_caa.tf
2025-08-04 15:43:52 +02:00

10 lines
250 B
HCL

resource "cloudflare_dns_record" "caa-root" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record N"
content = "0 issue \"letsencrypt.or\""
name = "@"
proxied = false
tags = []
ttl = 3600
type = "CAA"
}