forked from cytopia/terraform-aws-route53-zone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
63 lines (51 loc) · 2.32 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Note: local_* values are for debugging purposes
#
# -------------------------------------------------------------------------------------------------
# Route53 Delegation Sets
# -------------------------------------------------------------------------------------------------
output "delegation_sets" {
value = aws_route53_delegation_set.delegation_sets
description = "Created delegation sets."
}
# -------------------------------------------------------------------------------------------------
# Public Route53 Root Zones
# -------------------------------------------------------------------------------------------------
#output "local_public_root_zones" {
# value = local.public_root_zones
# description = "Transformed public root zones."
#}
output "public_root_zones" {
value = aws_route53_zone.public_root_zones
description = "Created public root zones."
}
# -------------------------------------------------------------------------------------------------
# Public Route53 Subdomain Zones (secondary)
# -------------------------------------------------------------------------------------------------
#output "local_public_delegated_secondary_zones" {
# value = local.public_delegated_secondary_zones
# description = "Transformed public secondary zones."
#}
#output "local_public_delegated_secondary_ns_records" {
# value = local.public_delegated_secondary_ns_records
# description = "Transformed public secondary ns records."
#}
output "public_delegated_secondary_zones" {
value = aws_route53_zone.public_delegated_secondary_zones
description = "Created public delegated secondary zones."
}
output "public_delegated_secondary_ns_records" {
value = aws_route53_record.public_delegated_secondary_ns_records
description = "Created NS records in your root zone for delegated secondary zones."
}
# -------------------------------------------------------------------------------------------------
# Private Route53 Root Zones
# -------------------------------------------------------------------------------------------------
#output "local_private_root_zones" {
# value = local.private_root_zones
# description = "Transformed private root zones."
#}
output "private_root_zones" {
value = aws_route53_zone.private_root_zones
description = "Created private root zones."
}