Skip to content

Commit

Permalink
spf
Browse files Browse the repository at this point in the history
  • Loading branch information
crlssn committed Dec 4, 2024
1 parent d992fcb commit 1c39687
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions infrastructure/email.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ resource "aws_route53_record" "dkim" {
ttl = 600
records = ["${each.value}.dkim.amazonses.com"]
}

resource "aws_route53_record" "spf" {
zone_id = aws_route53_zone.getstronger_pro.zone_id
name = "getstronger.pro"
type = "TXT"
ttl = 600
records = ["v=spf1 include:amazonses.com ~all"]
}

0 comments on commit 1c39687

Please sign in to comment.