Add opengist

This commit is contained in:
Ian Keane 2026-09-17 17:08:48 -04:00
parent 1132834b76
commit b1ec7bbca7
7 changed files with 173 additions and 0 deletions

13
terraform/opengist-dns.tf Normal file
View file

@ -0,0 +1,13 @@
# gist.keane.sh -> OpenGist, running on the same k8s cluster (different
# hosted zone than dumpnet.chat, so this is separate from dns_records/dns.tf)
data "aws_route53_zone" "keane_sh" {
name = "keane.sh"
}
resource "aws_route53_record" "opengist" {
zone_id = data.aws_route53_zone.keane_sh.zone_id
name = "gist.keane.sh"
type = "A"
ttl = 300
records = [aws_eip.controlplane.public_ip]
}