infrastructure/postgresql.tjo.cloud/terraform/dns.tf
Tine 4cbdce717d
Some checks failed
/ lint (push) Failing after 57s
feat(postgresql.tjo.cloud): prepare new deployment
2025-03-10 22:16:07 +01:00

20 lines
500 B
HCL

resource "dnsimple_zone" "tjo_cloud" {
name = "tjo.cloud"
}
resource "dnsimple_zone_record" "management" {
zone_name = dnsimple_zone.tjo_cloud.name
name = "postgresql"
value = "any.ingress.tjo.cloud"
type = "ALIAS"
ttl = 300
}
# TODO: For each node or some VIP + BGP thing?
resource "dnsimple_zone_record" "nodes" {
zone_name = dnsimple_zone.tjo_cloud.name
name = "postgresql"
value = "any.ingress.tjo.cloud"
type = "ALIAS"
ttl = 300
}