Skip to content

Commit 18549cb

Browse files
committed
Add postmark dns records
1 parent c71c178 commit 18549cb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

infrastructure/global/domains/pycon_it/records.tf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,3 +245,19 @@ resource "aws_route53_record" "flodesk_dmarc" {
245245
records = ["v=DMARC1; p=none"]
246246
ttl = "900"
247247
}
248+
249+
resource "aws_route53_record" "postmark_dkim" {
250+
zone_id = aws_route53_zone.pyconit.id
251+
name = "20241118190136pm._domainkey"
252+
type = "TXT"
253+
records = ["k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCNrZ0k+aFz4r58EgEAhZhieJgjAxwXiGaAXbaGYeeFyTJqLH+/bqxJ0+mkqnI5PZhXAGBJ7t1ZWmbTtD2Ul//efTOAiQO1inK0yXLwsiYJkuQUYJRbOfcLZd2QYjLK9CE1Gz1cZOzHhJB/Hho5yK/Ul+FeqJVG5qAuLM06Ga4VUwIDAQAB"]
254+
ttl = "900"
255+
}
256+
257+
resource "aws_route53_record" "postmark_bounces" {
258+
zone_id = aws_route53_zone.pyconit.id
259+
name = "pm-bounces"
260+
type = "CNAME"
261+
records = ["pm.mtasv.net"]
262+
ttl = "900"
263+
}

0 commit comments

Comments
 (0)