Files
foxhunt/infra/modules/dns/variables.tf
jgrusewski 020e85af2b infra: add DNS module + rename gitlab.fxhnt.ai → git.fxhnt.ai
Keep existing git.fxhnt.ai hostname for GitLab CE (repoint DNS
to new Tailscale IP after deploy). Add Terraform DNS module to
manage the A record via Terragrunt instead of manual scw CLI.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 23:26:51 +01:00

11 lines
253 B
HCL

variable "dns_zone" {
description = "DNS zone to manage records in"
type = string
default = "fxhnt.ai"
}
variable "git_ip" {
description = "IP address for git.fxhnt.ai (Tailscale subnet router or ClusterIP)"
type = string
}