Skip to content

Commit

Permalink
Flodesk domain verifcation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Dec 1, 2023
1 parent ed8688d commit 5a9b245
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 @@ -213,3 +213,19 @@ resource "aws_route53_record" "pycon_2024" {
records = ["cname.vercel-dns.com"]
ttl = "3600"
}

resource "aws_route53_record" "email_flodesk" {
zone_id = aws_route53_zone.pyconit.id
name = "fde._domainkey.pycon.it"
type = "CNAME"
records = ["dkim.dxjyvt.fg84.fdske.com"]
ttl = "3600"
}

resource "aws_route53_record" "email_flodesk_2" {
zone_id = aws_route53_zone.pyconit.id
name = "fdesp.pycon.it"
type = "CNAME"
records = ["spf.dxjyvt.fg84.fdske.com"]
ttl = "3600"
}

1 comment on commit 5a9b245

@vercel
Copy link

@vercel vercel bot commented on 5a9b245 Dec 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.