-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
49 lines (36 loc) · 1.47 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
##############################################################################
# VPC GUID
##############################################################################
output "vpc_id" {
description = "ID of VPC created"
value = module.ez_vpc.vpc_id
}
output "vpc_crn" {
description = "CRN of VPC created"
value = module.ez_vpc.vpc_crn
}
##############################################################################
##############################################################################
# VPN Gateway Public IPs
##############################################################################
output "vpn_gateway_public_ips" {
description = "List of VPN Gateway public IPS"
value = module.ez_vpc.vpn_gateway_public_ips
}
##############################################################################
##############################################################################
# Subnet Outputs
##############################################################################
output "subnet_ids" {
description = "The IDs of the subnets"
value = module.ez_vpc.subnet_ids
}
output "subnet_detail_list" {
description = "A list of subnets containing names, CIDR blocks, and zones."
value = module.ez_vpc.subnet_detail_list
}
output "subnet_zone_list" {
description = "A list containing subnet IDs and subnet zones"
value = module.ez_vpc.subnet_zone_list
}
##############################################################################