diff --git a/records_caa.tf b/records_caa.tf new file mode 100644 index 0000000..9936742 --- /dev/null +++ b/records_caa.tf @@ -0,0 +1,10 @@ +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" +} \ No newline at end of file