fix(dns): point pipeline.tradhox.com to cisystem IP (16.113.106.152)

This commit is contained in:
vickytechkey 2026-09-11 21:32:59 +05:30
parent cfb5cd5fd9
commit 3bc5fe25d0

View file

@ -46,7 +46,6 @@ class TradhoxdomainStack(Stack):
"beta-mailservices", "beta-mailservices",
"betawhatsapp", "betawhatsapp",
"betapayments", "betapayments",
"pipeline"
] ]
# Target IP address provided by the user # Target IP address provided by the user
@ -61,6 +60,15 @@ class TradhoxdomainStack(Stack):
target=route53.RecordTarget.from_ip_addresses(target_ip) target=route53.RecordTarget.from_ip_addresses(target_ip)
) )
# CI/CD pipeline server (Forgejo on cisystem)
ci_system_ip = "16.113.106.152"
route53.ARecord(
self, "PipelineRecord",
zone=hosted_zone,
record_name="pipeline",
target=route53.RecordTarget.from_ip_addresses(ci_system_ip)
)
# Route 'partners' frontend to PartnerProductionSiteBucket CloudFront distribution # Route 'partners' frontend to PartnerProductionSiteBucket CloudFront distribution
if partner_distribution: if partner_distribution:
route53.ARecord( route53.ARecord(