-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
60 lines (47 loc) · 1.83 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
##############################################################################
# Edge Network Outputs
##############################################################################
output "vpc_id" {
description = "ID of edge VPC"
value = module.edge_vpc.vpc_id
}
output "vpc_crn" {
description = "CRN of edge VPC"
value = module.edge_vpc.vpc_crn
}
output "network_acl" {
description = "Network ACL name and ID"
value = module.edge_vpc.network_acl
}
output "public_gateways" {
description = "Edge VPC public gateways"
value = module.edge_vpc.public_gateways
}
output "subnet_zone_list" {
description = "List of subnet ids, cidrs, names, and zones."
value = module.edge_vpc.subnet_zone_list
}
output "subnet_tiers" {
description = "Map of subnet tiers where each key contains the subnet zone list for that tier."
value = module.edge_vpc.subnet_tiers
}
##############################################################################
##############################################################################
# F5 Security Group Outputs
##############################################################################
output "security_groups" {
description = "List of security groups created."
value = module.f5_security_groups.groups
}
##############################################################################
##############################################################################
# Virtual Server Outputs
##############################################################################
output "virtual_servers" {
description = "List of virtual servers created by this module."
value = [
for instance in keys(module.f5_vsi_map.value) :
module.vsi_deployment[instance].virtual_servers
]
}
##############################################################################