Skip to content

Commit

Permalink
Add postmark dns records
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Dec 29, 2024
1 parent c71c178 commit 18549cb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions infrastructure/global/domains/pycon_it/records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -245,3 +245,19 @@ resource "aws_route53_record" "flodesk_dmarc" {
records = ["v=DMARC1; p=none"]
ttl = "900"
}

resource "aws_route53_record" "postmark_dkim" {
zone_id = aws_route53_zone.pyconit.id
name = "20241118190136pm._domainkey"
type = "TXT"
records = ["k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCNrZ0k+aFz4r58EgEAhZhieJgjAxwXiGaAXbaGYeeFyTJqLH+/bqxJ0+mkqnI5PZhXAGBJ7t1ZWmbTtD2Ul//efTOAiQO1inK0yXLwsiYJkuQUYJRbOfcLZd2QYjLK9CE1Gz1cZOzHhJB/Hho5yK/Ul+FeqJVG5qAuLM06Ga4VUwIDAQAB"]
ttl = "900"
}

resource "aws_route53_record" "postmark_bounces" {
zone_id = aws_route53_zone.pyconit.id
name = "pm-bounces"
type = "CNAME"
records = ["pm.mtasv.net"]
ttl = "900"
}

0 comments on commit 18549cb

Please sign in to comment.