Skip to content

Commit 3e3778d

Browse files
authored
Merge pull request #76 from answerdigital/Terra-FixRoute53
Route 53 Example Fix
2 parents 1adc5aa + a146b85 commit 3e3778d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

modules/aws/route53/example/example.tf

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ module "example_com" {
55
aliases = [
66
"example.org"
77
]
8-
google_site_verification = {
9-
name = "google-site-verification"
10-
type = "TXT"
11-
records = ["google-site-verification-key"]
12-
},
8+
139
alias_records = {
1410
"example.org" = {
1511
foo = {
@@ -20,11 +16,16 @@ module "example_com" {
2016
}
2117
}
2218
records = {
19+
google_site_verification = {
20+
name = "google-site-verification"
21+
type = "TXT"
22+
records = ["google-site-verification-key"]
23+
}
2324
www = {
2425
name = "www"
2526
type = "A"
2627
records = ["1.2.3.4"]
2728
}
2829
}
2930

30-
}
31+
}

0 commit comments

Comments
 (0)