File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
infrastructure/global/domains/pycon_it Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments