Remove pct tag from DMARC

This is the default
This commit is contained in:
Jake Howard 2023-01-26 12:02:12 +00:00
parent 5e9c5f7683
commit d08268baba
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@ resource "cloudflare_record" "jakehowardtech_dkim_fm3" {
resource "cloudflare_record" "jakehowardtech_dmarc" {
zone_id = cloudflare_zone.jakehowardtech.id
name = "_dmarc"
value = "v=DMARC1; pct=100; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
value = "v=DMARC1; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
type = "TXT"
ttl = 1
}
@ -183,7 +183,7 @@ resource "cloudflare_record" "jakehowardtech_mailgun_dkim" {
resource "cloudflare_record" "jakehowardtech_mailgun_dmarc" {
zone_id = cloudflare_zone.jakehowardtech.id
name = "_dmarc.mg"
value = "v=DMARC1; pct=100; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
value = "v=DMARC1; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
type = "TXT"
ttl = 1
}

View file

@ -79,7 +79,7 @@ resource "cloudflare_record" "theorangeonenet_dkim_fm3" {
resource "cloudflare_record" "theorangeonenet_dmarc" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "_dmarc"
value = "v=DMARC1; pct=100; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
value = "v=DMARC1; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
type = "TXT"
ttl = 1
}
@ -232,7 +232,7 @@ resource "cloudflare_record" "theorangeonenet_mailgun_dkim" {
resource "cloudflare_record" "theorangeonenet_mailgun_dmarc" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "_dmarc.mg"
value = "v=DMARC1; pct=100; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
value = "v=DMARC1; p=quarantine; rua=mailto:dmarc-report@jakehoward.tech;"
type = "TXT"
ttl = 1
}