Ajouter records_caa.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 17s

This commit is contained in:
2025-08-04 15:43:52 +02:00
parent dfbd193950
commit d6fd98accd

10
records_caa.tf Normal file
View File

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