From 882578e8380bcd9a83ac99cdf365f3896f6502ab Mon Sep 17 00:00:00 2001 From: Niels Kunis Date: Sun, 23 Jul 2023 13:34:38 +0200 Subject: [PATCH] added records for VERP/smtp2go --- terraform/dns.tf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/terraform/dns.tf b/terraform/dns.tf index eabc8bf..91e51bf 100644 --- a/terraform/dns.tf +++ b/terraform/dns.tf @@ -54,3 +54,27 @@ resource "powerdns_record" "inbucket_geokunis2_nl_a" { records = ["84.245.14.149"] ttl = 60 } + +resource "powerdns_record" "smtp2go_1_geokunis2_nl_cname" { + zone = "geokunis2.nl." + name = "em670271.geokunis2.nl." + type = "CNAME" + records = ["return.smtp2go.net"] + ttl = 60 +} + +resource "powerdns_record" "smtp2go_2_geokunis2_nl_cname" { + zone = "geokunis2.nl." + name = "s670271._domainkey.geokunis2.nl." + type = "CNAME" + records = ["dkim.smtp2go.net"] + ttl = 60 +} + +resource "powerdns_record" "smtp2go_3_geokunis2_nl_cname" { + zone = "geokunis2.nl." + name = "link.geokunis2.nl." + type = "CNAME" + records = ["track.smtp2go.net"] + ttl = 60 +} \ No newline at end of file