From 5f7b6ba59f33f0aacf2ae13faafe159c393833c1 Mon Sep 17 00:00:00 2001 From: Antonio Cuni Date: Mon, 20 Apr 2026 18:43:59 +0200 Subject: [PATCH 1/2] add genova.python.it DNS --- infrastructure/global/domains/python_it/records.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/infrastructure/global/domains/python_it/records.tf b/infrastructure/global/domains/python_it/records.tf index a8f3525f10..b0b0aaf07f 100644 --- a/infrastructure/global/domains/python_it/records.tf +++ b/infrastructure/global/domains/python_it/records.tf @@ -214,6 +214,14 @@ resource "aws_route53_record" "venice_python_it_cname" { ttl = "3600" } +resource "aws_route53_record" "genova_python_it_a" { + zone_id = aws_route53_zone.pythonit.id + name = "genova.python.it" + type = "CNAME" + records = ["pyzena.github.io"] + ttl = "3600" + + resource "aws_route53_record" "testcommunity_cname" { zone_id = aws_route53_zone.pythonit.id name = "testcommunity.python.it" From 921152831f559b998bc3d1e8b203dbb084396ab9 Mon Sep 17 00:00:00 2001 From: Marco Acierno Date: Tue, 21 Apr 2026 15:54:14 +0100 Subject: [PATCH 2/2] add missing } --- infrastructure/global/domains/python_it/records.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/global/domains/python_it/records.tf b/infrastructure/global/domains/python_it/records.tf index b0b0aaf07f..463fd49bd3 100644 --- a/infrastructure/global/domains/python_it/records.tf +++ b/infrastructure/global/domains/python_it/records.tf @@ -220,7 +220,7 @@ resource "aws_route53_record" "genova_python_it_a" { type = "CNAME" records = ["pyzena.github.io"] ttl = "3600" - +} resource "aws_route53_record" "testcommunity_cname" { zone_id = aws_route53_zone.pythonit.id