110 lines
2.9 KiB
HCL
110 lines
2.9 KiB
HCL
|
|
# Mailcow MX record
|
|
resource "dnsimple_zone_record" "mcintire_mx_mailcow" {
|
|
zone_name = "mcintire.me"
|
|
name = ""
|
|
priority = 10
|
|
value = "mail.w5isp.com"
|
|
type = "MX"
|
|
ttl = 3600
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_mx_backup" {
|
|
zone_name = "mcintire.me"
|
|
name = ""
|
|
priority = 20
|
|
value = "mail.nsnw.ca"
|
|
type = "MX"
|
|
ttl = 3600
|
|
}
|
|
|
|
|
|
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_test" {
|
|
zone_name = "mcintire.me"
|
|
name = "*.test"
|
|
value = "cname.bookappt.link."
|
|
type = "CNAME"
|
|
ttl = 14400
|
|
}
|
|
|
|
# Mail server
|
|
resource "dnsimple_zone_record" "mcintire_mail" {
|
|
zone_name = "mcintire.me"
|
|
name = "mail"
|
|
value = "66.206.18.162"
|
|
type = "A"
|
|
ttl = 3600
|
|
}
|
|
|
|
# Autodiscover for mail clients (CNAME to mail server)
|
|
resource "dnsimple_zone_record" "mcintire_autodiscover" {
|
|
zone_name = "mcintire.me"
|
|
name = "autodiscover"
|
|
value = "mail.w5isp.com"
|
|
type = "CNAME"
|
|
ttl = 3600
|
|
}
|
|
|
|
# Autodiscover SRV record
|
|
resource "dnsimple_zone_record" "mcintire_autodiscover_srv" {
|
|
zone_name = "mcintire.me"
|
|
name = "_autodiscover._tcp"
|
|
value = "0 443 mail.w5isp.com"
|
|
type = "SRV"
|
|
priority = 0
|
|
ttl = 3600
|
|
}
|
|
|
|
# Autoconfig for mail clients
|
|
resource "dnsimple_zone_record" "mcintire_autoconfig" {
|
|
zone_name = "mcintire.me"
|
|
name = "autoconfig"
|
|
value = "mail.w5isp.com"
|
|
type = "CNAME"
|
|
ttl = 3600
|
|
}
|
|
|
|
# SPF record for Mailcow
|
|
resource "dnsimple_zone_record" "mcintire_spf_mailcow" {
|
|
zone_name = "mcintire.me"
|
|
name = ""
|
|
value = "\"v=spf1 mx a ip4:66.206.18.162 ~all\""
|
|
type = "TXT"
|
|
ttl = 3600
|
|
}
|
|
|
|
# DMARC record for Mailcow
|
|
resource "dnsimple_zone_record" "mcintire_dmarc_mailcow" {
|
|
zone_name = "mcintire.me"
|
|
name = "_dmarc"
|
|
value = "\"v=DMARC1; p=quarantine; rua=mailto:postmaster@mcintire.me; ruf=mailto:postmaster@mcintire.me; fo=1\""
|
|
type = "TXT"
|
|
ttl = 3600
|
|
}
|
|
|
|
# DKIM record from Mailcow
|
|
resource "dnsimple_zone_record" "mcintire_dkim_mailcow" {
|
|
zone_name = "mcintire.me"
|
|
name = "dkim._domainkey"
|
|
value = "v=DKIM1;k=rsa;t=s;s=email;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0rQie7Hz5AmDbVUX+rKNgp6Hf7crtWyfy6qKbqnrxmmernz1rQ6HyOrHhFAlc8nVLNKr8XP2DOROb1jAnrjndZo9I/ymbrrrCBsi9w6zAht2BheijO/R9k5CDRjeSafm6bg0oMKihtNMIdXvEj9ND8hDpZZKxtOrKFH7zLm4CPmm7jf0gqZH2yK+AA3OYUGSYa1OT0LtdMXadk0IVOI2VYf37Hzb3RUvGOYMVkT0xi+23DiyFk7AyCiyv3LQVBMT+/bwyd4k3yVVn2cr9+Nor+HXVjqASLtqcFLMf1SuX0ezSAjBG7BbqQr5G6Jz+n5YglqEIUKVYzJFE7JdDmqQYQIDAQAB"
|
|
type = "TXT"
|
|
ttl = 3600
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_headscale" {
|
|
zone_name = "mcintire.me"
|
|
name = "headscale"
|
|
value = "66.206.18.166"
|
|
type = "A"
|
|
ttl = 3600
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_hs" {
|
|
zone_name = "mcintire.me"
|
|
name = "hs"
|
|
value = "66.206.18.166"
|
|
type = "A"
|
|
ttl = 3600
|
|
}
|