-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
59 lines (48 loc) · 1.59 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
output "vpc_id" {
value = module.network.vpc_id
description = "string ||| "
}
output "vpc_cidr" {
value = module.network.vpc_cidr_block
description = "string ||| "
}
output "public_subnet_ids" {
value = module.network.public_subnets
description = "list(string) ||| "
}
output "public_cidrs" {
value = module.network.public_subnets_cidr_blocks
description = "list(string) ||| "
}
output "private_subnet_ids" {
value = module.network.private_subnets
description = "list(string) ||| "
}
output "private_cidrs" {
value = module.network.private_subnets_cidr_blocks
description = "list(string) ||| "
}
output "intra_subnet_ids" {
value = module.network.intra_subnets
description = "list(string) ||| "
}
output "intra_cidrs" {
value = module.network.intra_subnets_cidr_blocks
description = "list(string) ||| "
}
output "internal_zone_id" {
value = aws_route53_zone.internal.zone_id
description = "string ||| "
}
output "service_discovery_id" {
value = aws_service_discovery_private_dns_namespace.service.id
description = "string ||| AWS ID for the Private DNS namespace created in this network."
}
output "service_discovery_name" {
value = aws_service_discovery_private_dns_namespace.service.name
description = "string ||| The root TLD for the Private DNS namespace created in this network."
}
output "nat_public_ips" {
value = module.network.nat_public_ips
description = "string ||| A list of IP addresses that are attached to NAT Gateways that allow traffic from private resources to the internet."
}