add g.w5isp.com

This commit is contained in:
Graham McIntire 2025-04-12 10:13:11 -05:00
parent fbf3721ad1
commit 49fe16ebb8
No known key found for this signature in database

View file

@ -79,3 +79,19 @@ resource "dnsimple_zone_record" "w5isp_mx2" {
type = "MX" type = "MX"
ttl = 36000 ttl = 36000
} }
resource "dnsimple_zone_record" "w5isp_g" {
zone_name = "w5isp.com"
name = "g"
value = "204.110.191.217"
type = "A"
ttl = 3600
}
resource "dnsimple_zone_record" "w5isp_truck" {
zone_name = "w5isp.com"
name = "truck"
value = "g.w5isp.com."
type = "CNAME"
ttl = 3600
}