Actualiser records_txt.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s

This commit is contained in:
2025-08-04 19:28:28 +02:00
parent 35d040ee3a
commit f32cf03c80

View File

@@ -12,7 +12,8 @@ resource "cloudflare_dns_record" "txt-amazonses" {
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;\""
# content = "\"v=DMARC1; p=none; pct=100; rua=mailto:dmarc@tips-of-mine.org; sp=none; aspf=r;\""
content = "\"v=DMARC1; p=none\""
name = "_dmarc"
proxied = false
tags = []
@@ -41,3 +42,14 @@ resource "cloudflare_dns_record" "txt-yunohost" {
ttl = 3600
type = "TXT"
}
resource "cloudflare_dns_record" "txt-yunohost" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record P"
content = "\"v=DKIM1; h=sha256; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCxR3mgKVD2xC8EbsgvrTZZJLvBFdPPRFPQIyMplnY6mC6pi7Jn4b/FFAggWRHEN3gh50BheYePa8DItTXLPl9WemSCL9TUsbM3S9p19qx5iuT7hFLGl2C54Ps0z7Jh5XIlxUHKIl22vNlACPG548BG4N1qz1lYNHlSRmUgBUJsCQIDAQAB\""
name = "mail._domainkey"
proxied = false
tags = []
ttl = 3600
type = "TXT"
}