Add DMARC to mailgun
This commit is contained in:
parent
8c1f088b19
commit
1eaa33e664
2 changed files with 16 additions and 0 deletions
|
@ -179,3 +179,11 @@ resource "cloudflare_record" "jakehowardtech_mailgun_dkim" {
|
|||
type = "TXT"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
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;"
|
||||
type = "TXT"
|
||||
ttl = 1
|
||||
}
|
||||
|
|
|
@ -244,3 +244,11 @@ resource "cloudflare_record" "theorangeonenet_mailgun_dkim" {
|
|||
type = "TXT"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
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;"
|
||||
type = "TXT"
|
||||
ttl = 1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue