Skip to content

Commit 27359ae

Browse files
authored
Add pydata.it domain zone to global infrastructure (#4561)
1 parent e8d450f commit 27359ae

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
resource "aws_route53_zone" "pydata_it" {
2+
name = "pydata.it"
3+
comment = ""
4+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
resource "aws_route53_record" "pydata_it_txt" {
2+
zone_id = aws_route53_zone.pydata_it.id
3+
name = "pydata.it"
4+
type = "TXT"
5+
records = ["google-site-verification=Lwmb3AJYmMsxy-guo-bUbV3j-Be1a0nbp9c2f4lPmSM"]
6+
ttl = "60"
7+
}

infrastructure/global/modules.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ module "pycon_it" {
1010
source = "./domains/pycon_it"
1111
}
1212

13+
module "pydata_it" {
14+
source = "./domains/pydata_it"
15+
}
16+
1317
module "vpc" {
1418
source = "./vpc"
1519
}

0 commit comments

Comments
 (0)