From 5a9b2458424e672d3099f8920f9150c7d01ba91d Mon Sep 17 00:00:00 2001 From: Marco Acierno Date: Fri, 1 Dec 2023 12:23:41 +0100 Subject: [PATCH] Flodesk domain verifcation --- .../global/domains/pycon_it/records.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/infrastructure/global/domains/pycon_it/records.tf b/infrastructure/global/domains/pycon_it/records.tf index f6c9fac9f1..8d0da398ff 100644 --- a/infrastructure/global/domains/pycon_it/records.tf +++ b/infrastructure/global/domains/pycon_it/records.tf @@ -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" +}