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" }