Files
terraform-cloudflare-dns-zo…/records_txt.tf
Hubert Cornet ebde997459
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 14s
Actualiser records_txt.tf
2025-08-04 16:41:05 +02:00

43 lines
1.1 KiB
HCL

resource "cloudflare_dns_record" "txt-amazonses" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record E"
content = "\"xxxxxxxx\""
name = "_amazonses"
proxied = false
tags = []
ttl = 300
type = "TXT"
}
resource "cloudflare_dns_record" "txt-dmarc" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record F"
content = "\"v=DMARC1; p=none; pct=100; rua=mailto:dmarc@tips-of-mine.org; sp=none; aspf=r;\""
name = "_dmarc"
proxied = false
tags = []
ttl = 300
type = "TXT"
}
resource "cloudflare_dns_record" "txt-mandrill-domainkey" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record G"
content = "\"v=DKIM1; k=rsa; p=xxxxxxxx;\""
name = "mandrill._domainkey"
proxied = false
tags = []
ttl = 300
type = "TXT"
}
resource "cloudflare_dns_record" "txt-yunohost" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record O"
content = "\"v=spf1 a mx -all\""
name = "@"
proxied = false
tags = []
ttl = 3600
type = "TXT"
}