main: add kn-sfo2 ingress
ci/woodpecker/push/dns Pipeline was successful
Details
ci/woodpecker/push/dns Pipeline was successful
Details
parent
d63adb31b6
commit
438ec1367e
17
dns/main.tf
17
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}"
|
||||
|
|
Loading…
Reference in New Issue