Skip to content

Commit e30ba83

Browse files
authored
Add postmark DNS records (#4284)
1 parent df4724c commit e30ba83

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/global-terraform-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18+
- uses: hashicorp/setup-terraform@v3
19+
with:
20+
terraform_version: 1.2.4
1821
- name: Terraform Format
1922
id: fmt
2023
run: terraform fmt -check

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)