-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
224 lines (177 loc) · 7.67 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
##############################################################################
# VPC Outputs
##############################################################################
output "vpc_networks" {
description = "VPC network information"
value = module.icse_vpc_network.vpc_networks
}
output "vpc_flow_logs_data" {
description = "Information for Connecting VPC to flow logs using ICSE Flow Logs Module"
value = module.icse_vpc_network.vpc_flow_logs_data
}
output "vpc_network_acls" {
description = "List of network ACLs"
value = module.advanced_setup.all_network_acl_list
}
##############################################################################
##############################################################################
# Key Management Outputs
##############################################################################
output "key_management_name" {
description = "Name of key management service"
value = module.icse_vpc_network.key_management_name
}
output "key_management_crn" {
description = "CRN for KMS instance"
value = module.icse_vpc_network.key_management_crn
}
output "key_management_guid" {
description = "GUID for KMS instance"
value = module.icse_vpc_network.key_management_guid
}
output "key_rings" {
description = "Key rings created by module"
value = module.icse_vpc_network.key_rings
}
output "keys" {
description = "List of names and ids for keys created."
value = module.icse_vpc_network.keys
}
##############################################################################
##############################################################################
# Cloud Object Storage Outputs
##############################################################################
output "cos_instances" {
description = "List of COS resource instances with shortname, name, id, and crn."
value = module.icse_vpc_network.cos_instances
}
output "cos_buckets" {
description = "List of COS bucket instances with shortname, instance_shortname, name, id, crn, and instance id."
value = module.icse_vpc_network.cos_buckets
}
##############################################################################
##############################################################################
# Secrets Manager Outputs
##############################################################################
output "secrets_manager_name" {
description = "Name of secrets manager instance"
value = module.icse_vpc_network.secrets_manager_name
}
output "secrets_manager_id" {
description = "id of secrets manager instance"
value = module.icse_vpc_network.secrets_manager_id
}
output "secrets_manager_guid" {
description = "guid of secrets manager instance"
value = module.icse_vpc_network.secrets_manager_guid
}
##############################################################################
##############################################################################
# Cluster Outputs
##############################################################################
output "cluster_list" {
description = "ID, name, crn, ingress hostname, private service endpoint url, public service endpoint url of each cluster"
value = [
for cluster in module.clusters :
{
name = cluster.cluster_name
crn = cluster.cluster_crn
id = cluster.cluster_id
ingress_hostname = cluster.ingress_hostname
private_service_endpoint_url = cluster.private_service_endpoint_url
public_service_endpoint_url = cluster.public_service_endpoint_url
}
]
}
##############################################################################
##############################################################################
# VSI Outputs
##############################################################################
output "vsi_data" {
description = "List of VSI data"
value = [
for deployment in module.vsi_deployment_map.value :
{
deployment_name = "${deployment.name}-vsi"
virtual_servers = module.vsi_deployment[deployment.name].virtual_servers
public_load_balancer = module.vsi_deployment[deployment.name].public_load_balancer
private_load_balancer = module.vsi_deployment[deployment.name].private_load_balancer
security_group_id = module.security_groups[deployment.name].groups[0].id
}
]
}
output "custom_vsi_data" {
description = "List of VSI data"
value = module.advanced_setup.custom_vsi_data
}
##############################################################################
##############################################################################
# Security Group Outputs
##############################################################################
output "security_groups" {
description = "List of security groups created by this template"
value = flatten([
[
for group in module.vsi_deployment_map.value :
module.security_groups[group.name].groups
],
module.advanced_setup.security_groups
])
}
##############################################################################
##############################################################################
# Edge Outputs
##############################################################################
output "f5_vpc_id" {
description = "ID of edge VPC"
value = local.enable_f5 == true ? module.f5[0].vpc_id : null
}
output "f5_network_acl" {
description = "Network ACL name and ID"
value = local.enable_f5 == true ? module.f5[0].network_acl : null
}
output "f5_public_gateways" {
description = "Edge VPC public gateways"
value = local.enable_f5 == true ? module.f5[0].public_gateways : null
}
output "f5_subnet_zone_list" {
description = "List of subnet ids, cidrs, names, and zones."
value = local.enable_f5 == true ? module.f5[0].subnet_zone_list : null
}
output "f5_subnet_tiers" {
description = "Map of subnet tiers where each key contains the subnet zone list for that tier."
value = local.enable_f5 == true ? module.f5[0].subnet_tiers : null
}
output "f5_security_groups" {
description = "List of security groups created."
value = local.enable_f5 == true ? module.f5[0].security_groups : null
}
output "f5_virtual_servers" {
description = "List of virtual servers created by this module."
value = local.enable_f5 == true ? module.f5[0].virtual_servers : null
}
##############################################################################
##############################################################################
# App ID Outputs
##############################################################################
output "appid_guid" {
description = "App ID GUID"
value = var.enable_teleport == true ? module.teleport_vsi[0].appid_guid : null
}
output "appid_crn" {
description = "App ID CRN"
value = var.enable_teleport == true ? module.teleport_vsi[0].appid_crn : null
}
output "appid_redirect_urls" {
description = "List of App ID redirect URLs"
value = var.enable_teleport == true ? module.teleport_vsi[0].appid_redirect_urls : null
}
##############################################################################
##############################################################################
# Teleport VSI Outputs
##############################################################################
output "teleport_virtual_servers" {
description = "List of VSI IDs, Names, Primary IPV4 addresses, floating IPs, and secondary floating IPs"
value = var.enable_teleport == true ? module.teleport_vsi[0].virtual_servers : null
}
##############################################################################