generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
43 lines (36 loc) · 864 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
output "type" {
description = "The DNS zone type."
value = var.type
}
output "name" {
description = "The DNS zone name."
value = element(
concat(
google_dns_managed_zone.peering[*].name,
google_dns_managed_zone.private[*].name,
google_dns_managed_zone.public[*].name
),
0,
)
}
output "domain" {
description = "The DNS zone domain."
value = element(
concat(
google_dns_managed_zone.peering[*].dns_name,
google_dns_managed_zone.private[*].dns_name,
google_dns_managed_zone.public[*].dns_name
),
0,
)
}
output "name_servers" {
description = "The DNS zone name servers."
value = flatten(
concat(
google_dns_managed_zone.peering[*].name_servers,
google_dns_managed_zone.private[*].name_servers,
google_dns_managed_zone.public[*].name_servers
),
)
}