From 438ec1367eb023b638e3cbb9a9698f14ae12f6c5 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Sat, 30 Jul 2022 04:20:01 +0000 Subject: [PATCH] main: add kn-sfo2 ingress --- dns/main.tf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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}"