We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8d450f commit 27359aeCopy full SHA for 27359ae
3 files changed
infrastructure/global/domains/pydata_it/main.tf
@@ -0,0 +1,4 @@
1
+resource "aws_route53_zone" "pydata_it" {
2
+ name = "pydata.it"
3
+ comment = ""
4
+}
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
+ type = "TXT"
5
+ records = ["google-site-verification=Lwmb3AJYmMsxy-guo-bUbV3j-Be1a0nbp9c2f4lPmSM"]
6
+ ttl = "60"
7
infrastructure/global/modules.tf
@@ -10,6 +10,10 @@ module "pycon_it" {
10
source = "./domains/pycon_it"
11
}
12
13
+module "pydata_it" {
14
+ source = "./domains/pydata_it"
15
16
+
17
module "vpc" {
18
source = "./vpc"
19
0 commit comments