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>
10 lines
195 B
HCL
10 lines
195 B
HCL
# DNS records for fxhnt.ai zone (Scaleway DNS)
|
|
|
|
resource "scaleway_domain_record" "git" {
|
|
dns_zone = var.dns_zone
|
|
name = "git"
|
|
type = "A"
|
|
data = var.git_ip
|
|
ttl = 300
|
|
}
|