From b868c21dd3e29d71f28716be390446982f641514 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Fri, 6 Feb 2026 09:52:06 +0000 Subject: [PATCH] Add pydata.it domain zone to global infrastructure --- infrastructure/global/domains/pydata_it/main.tf | 4 ++++ infrastructure/global/domains/pydata_it/records.tf | 7 +++++++ infrastructure/global/modules.tf | 4 ++++ 3 files changed, 15 insertions(+) create mode 100644 infrastructure/global/domains/pydata_it/main.tf create mode 100644 infrastructure/global/domains/pydata_it/records.tf diff --git a/infrastructure/global/domains/pydata_it/main.tf b/infrastructure/global/domains/pydata_it/main.tf new file mode 100644 index 0000000000..d9715d3300 --- /dev/null +++ b/infrastructure/global/domains/pydata_it/main.tf @@ -0,0 +1,4 @@ +resource "aws_route53_zone" "pydata_it" { + name = "pydata.it" + comment = "" +} diff --git a/infrastructure/global/domains/pydata_it/records.tf b/infrastructure/global/domains/pydata_it/records.tf new file mode 100644 index 0000000000..c9020557b3 --- /dev/null +++ b/infrastructure/global/domains/pydata_it/records.tf @@ -0,0 +1,7 @@ +resource "aws_route53_record" "pydata_it_txt" { + zone_id = aws_route53_zone.pydata_it.id + name = "pydata.it" + type = "TXT" + records = ["google-site-verification=Lwmb3AJYmMsxy-guo-bUbV3j-Be1a0nbp9c2f4lPmSM"] + ttl = "60" +} diff --git a/infrastructure/global/modules.tf b/infrastructure/global/modules.tf index 96f0489039..6dc4b03afe 100644 --- a/infrastructure/global/modules.tf +++ b/infrastructure/global/modules.tf @@ -10,6 +10,10 @@ module "pycon_it" { source = "./domains/pycon_it" } +module "pydata_it" { + source = "./domains/pydata_it" +} + module "vpc" { source = "./vpc" }