feat: moved to git subdomain

This commit is contained in:
2025-02-11 23:10:57 -05:00
parent 116c683300
commit 5ec2bd0c35
4 changed files with 20 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ data "aws_route53_zone" "main" {
# Push all domain traffic through the reverse proxy.
resource "aws_route53_record" "domain" {
zone_id = data.aws_route53_zone.main.zone_id
name = "code.${data.aws_route53_zone.main.name}"
name = "git.${data.aws_route53_zone.main.name}"
type = "A"
ttl = "60"
records = [aws_eip.public.public_ip]