-
-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathoutputs.tf
84 lines (68 loc) · 3.16 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
output "public_subnet_cidrs" {
description = "IPv4 CIDRs assigned to the created public subnets"
value = module.subnets.public_subnet_cidrs
}
output "private_subnet_cidrs" {
description = "IPv4 CIDRs assigned to the created private subnets"
value = module.subnets.private_subnet_cidrs
}
output "public_subnet_ipv6_cidrs" {
description = "IPv6 CIDRs assigned to the created public subnets"
value = module.subnets.public_subnet_ipv6_cidrs
}
output "private_subnet_ipv6_cidrs" {
description = "IPv6 CIDRs assigned to the created private subnets"
value = module.subnets.private_subnet_ipv6_cidrs
}
output "vpc_ipv6_cidr" {
description = "Default IPv6 CIDR of the VPC"
value = module.vpc.vpc_ipv6_cidr_block
}
output "public_route_table_ids" {
description = "IDs of the created public route tables"
value = module.subnets.public_route_table_ids
}
output "private_route_table_ids" {
description = "IDs of the created private route tables"
value = module.subnets.private_route_table_ids
}
output "az_private_subnets_map" {
description = "Map of AZ names to list of private subnet IDs in the AZs"
value = module.subnets.az_private_subnets_map
}
output "az_public_subnets_map" {
description = "Map of AZ names to list of public subnet IDs in the AZs"
value = module.subnets.az_public_subnets_map
}
output "az_private_route_table_ids_map" {
description = "Map of AZ names to list of private route table IDs in the AZs"
value = module.subnets.az_private_route_table_ids_map
}
output "az_public_route_table_ids_map" {
description = "Map of AZ names to list of public route table IDs in the AZs"
value = module.subnets.az_public_route_table_ids_map
}
output "named_private_subnets_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of private subnet IDs"
value = module.subnets.named_private_subnets_map
}
output "named_public_subnets_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of public subnet IDs"
value = module.subnets.named_public_subnets_map
}
output "named_private_route_table_ids_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of private route table IDs"
value = module.subnets.named_private_route_table_ids_map
}
output "named_public_route_table_ids_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of public route table IDs"
value = module.subnets.named_public_route_table_ids_map
}
output "named_private_subnets_stats_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of objects with each object having three items: AZ, private subnet ID, private route table ID"
value = module.subnets.named_private_subnets_stats_map
}
output "named_public_subnets_stats_map" {
description = "Map of subnet names (specified in `subnets_per_az_names` variable) to lists of objects with each object having three items: AZ, public subnet ID, public route table ID"
value = module.subnets.named_public_subnets_stats_map
}