-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
56 lines (56 loc) · 1.82 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
output "vpc_arn" {
value = module.vpc.vpc_arn
description = "Amazon Resource Name (ARN) of VPC"
}
output "vpc_id" {
value = module.vpc.vpc_id
description = "The ID of the VPC"
}
output "private_subnet_ids" {
value = module.vpc.private_subnet_ids
description = "Map of Private Subnet and associated subnet id created.`private_subnet_ids = {\"Web or Data Subnet 1\" = { \"subnet_id\" = \"subnet-xxxxxxx\"}`"
}
output "public_subnet_ids" {
value = module.vpc.public_subnet_ids
description = "Map of Public Subnet and associated subnet id created.`public_subnet_ids = {\"Public Subnet 1\" = { \"subnet_id\" = \"subnet-xxxxxxx\"}`"
}
output "subnets" {
value = module.vpc.subnets
description = "CIDR information associated with each subnet."
}
output "public_route_table" {
value = module.routes.public_route_table
description = "Public Route Table ID."
}
output "public_route" {
value = module.routes.public_route
description = "Public Route ID - Traffic to Internet Gateway"
}
output "route_table_az1" {
value = module.routes.route_table_az1
description = "Private Route Table ID - AZ1"
}
output "route_table_az2" {
value = module.routes.route_table_az2
description = "Private Route Table ID - AZ2"
}
output "route_table_az3" {
value = module.routes.route_table_az3
description = "Private Route Table ID - AZ3"
}
output "eip" {
value = module.eip.eip
description = "Elastic IP address information"
}
output "eip_map" {
value = module.eip.eip_map
description = "Elastic IP address information with subnet mapping"
}
output "nat_gw" {
value = module.nat.nat_gw
description = "NAT Gateway information with the Subnet and EIP allocation ID."
}
output "igw" {
value = module.igw.igw
description = "Internet Gateway Information."
}