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>
11 lines
253 B
HCL
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
|
|
}
|