diff --git a/terraform/dns_w5isp.tf b/terraform/dns_w5isp.tf index fc380eb..817120e 100644 --- a/terraform/dns_w5isp.tf +++ b/terraform/dns_w5isp.tf @@ -79,3 +79,19 @@ resource "dnsimple_zone_record" "w5isp_mx2" { type = "MX" 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 +}