79 lines
2.2 KiB
HCL
79 lines
2.2 KiB
HCL
resource "dnsimple_zone_record" "mcintire_mx_10" {
|
|
zone_name = "mcintire.me"
|
|
name = "@"
|
|
value = "mail.protonmail.ch."
|
|
type = "MX"
|
|
ttl = 3600
|
|
priority = 10
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_mx_20" {
|
|
zone_name = "mcintire.me"
|
|
name = "@"
|
|
value = "mailsec.protonmail.ch."
|
|
type = "MX"
|
|
ttl = 3600
|
|
priority = 20
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_txt_spf" {
|
|
zone_name = "mcintire.me"
|
|
name = "@"
|
|
value = "v=spf1 include:_spf.protonmail.ch ~all"
|
|
type = "TXT"
|
|
ttl = 3600
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_txt_dmarc" {
|
|
zone_name = "mcintire.me"
|
|
name = "_dmarc"
|
|
value = "v=DMARC1; p=quarantine"
|
|
type = "TXT"
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_txt_verification" {
|
|
zone_name = "mcintire.me"
|
|
name = "@"
|
|
value = "protonmail-verification=e2d59d75d33081519c75e11908b30e206ad7324d"
|
|
type = "TXT"
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_photos" {
|
|
zone_name = "mcintire.me"
|
|
name = "photos"
|
|
value = "caddy.w5isp.com."
|
|
type = "CNAME"
|
|
ttl = 14400
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_protonmail_domainkey" {
|
|
zone_name = "mcintire.me"
|
|
name = "protonmail._domainkey"
|
|
value = "protonmail.domainkey.dq7rufxozvkgaev373cchyg6cvrweh4mqtf6yazivom7mcw3yhdaq.domains.proton.ch."
|
|
type = "CNAME"
|
|
ttl = 259200
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_protonmail2_domainkey" {
|
|
zone_name = "mcintire.me"
|
|
name = "protonmail2._domainkey"
|
|
value = "protonmail2.domainkey.dq7rufxozvkgaev373cchyg6cvrweh4mqtf6yazivom7mcw3yhdaq.domains.proton.ch."
|
|
type = "CNAME"
|
|
ttl = 259200
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_protonmail3_domainkey" {
|
|
zone_name = "mcintire.me"
|
|
name = "protonmail3._domainkey"
|
|
value = "protonmail3.domainkey.dq7rufxozvkgaev373cchyg6cvrweh4mqtf6yazivom7mcw3yhdaq.domains.proton.ch."
|
|
type = "CNAME"
|
|
ttl = 259200
|
|
}
|
|
|
|
resource "dnsimple_zone_record" "mcintire_cname_test" {
|
|
zone_name = "mcintire.me"
|
|
name = "*.test"
|
|
value = "cname.bookappt.link."
|
|
type = "CNAME"
|
|
ttl = 14400
|
|
}
|