Actualiser records_caa.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 11s

This commit is contained in:
2025-08-04 15:50:10 +02:00
parent bc544ef986
commit 6fe6ed716b

View File

@@ -1,14 +1,11 @@
resource "cloudflare_dns_record" "caa-root" { resource "cloudflare_dns_record" "caa-root" {
zone_id = var.cloudflare_zone_id zone_id = var.cloudflare_zone_id
comment = "Domain verification record N" comment = "Domain verification record N"
data = { issue = ["letsencrypt.org"]
flags = "0" issuewild = [";"]
tag = "issue" name = "@"
value = "letsencrypt.org" proxied = false
} tags = []
name = "@" ttl = 3600
proxied = false type = "CAA"
tags = []
ttl = 3600
type = "CAA"
} }