From 49fe16ebb89ea04165e3b7667ef9dac1179bebef Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 12 Apr 2025 10:13:11 -0500 Subject: [PATCH] add g.w5isp.com --- terraform/dns_w5isp.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 +}