main: add kn-sfo2 ingress
ci/woodpecker/push/dns Pipeline was successful Details

main
Ariadne Conill 2022-07-30 04:20:01 +00:00
parent d63adb31b6
commit 438ec1367e
1 changed files with 17 additions and 0 deletions

View File

@ -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}"