From 3b730dd859a927b26ad91bb19b427a68a50239b6 Mon Sep 17 00:00:00 2001 From: hcornet Date: Wed, 15 Jan 2025 18:27:56 +0100 Subject: [PATCH] Modify : correction TXT file content --- records_txt.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/records_txt.tf b/records_txt.tf index 781074f..cd7b03c 100644 --- a/records_txt.tf +++ b/records_txt.tf @@ -1,7 +1,7 @@ resource "cloudflare_record" "txt-amazonses" { zone_id = var.cloudflare_zone_id comment = "Domain verification record E" - content = "xxxxxxxx" + content = "\"xxxxxxxx\"" name = "_amazonses" proxied = false tags = [] @@ -12,7 +12,7 @@ resource "cloudflare_record" "txt-amazonses" { resource "cloudflare_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.com; sp=none; aspf=r;" + content = "\"v=DMARC1; p=none; pct=100; rua=mailto:dmarc@tips-of-mine.com; sp=none; aspf=r;\"" name = "_dmarc" proxied = false tags = [] @@ -23,7 +23,7 @@ resource "cloudflare_record" "txt-dmarc" { resource "cloudflare_record" "txt-mandrill-domainkey" { zone_id = var.cloudflare_zone_id comment = "Domain verification record G" - content = "v=DKIM1; k=rsa; p=xxxxxxxx;" + content = "\"v=DKIM1; k=rsa; p=xxxxxxxx;\"" name = "mandrill._domainkey" proxied = false tags = []