diff --git a/dns/main.tf b/dns/main.tf index 468709b..0603d1b 100644 --- a/dns/main.tf +++ b/dns/main.tf @@ -63,6 +63,23 @@ resource "linode_domain_record" "kn_oci_sanjose_ingress_v6" { ttl_sec = 30 } +// Treehouse cluster: kn-sfo2 +resource "linode_domain_record" "kn_sfo2_ingress_v4" { + domain_id = "${linode_domain.treehouse_domain.id}" + name = "kn-sfo2.ingress" + record_type = "A" + target = "104.250.236.4" + ttl_sec = 30 +} + +resource "linode_domain_record" "kn_sfo2_ingress_v6" { + domain_id = "${linode_domain.treehouse_domain.id}" + name = "kn-sfo2.ingress" + record_type = "AAAA" + target = "2602:fd37:1:0:104:250:236:4" + ttl_sec = 30 +} + // Treehouse services: Gitea resource "linode_domain_record" "gitea_v4" { domain_id = "${linode_domain.treehouse_domain.id}"