-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
336 lines (249 loc) · 10.4 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#__________________________________________________________
#
# Adapter Configuration Policy Outputs
#__________________________________________________________
output "adapter_configuration" {
description = "Moid's of the Adapter Configuration Policies."
value = { for v in sort(keys(intersight_adapter_config_policy.map)) : v => intersight_adapter_config_policy.map[v].moid }
}
#__________________________________________________________
#
# BIOS Policy Outputs
#__________________________________________________________
output "bios" {
description = "Moid's of the BIOS Policies."
value = { for v in sort(keys(intersight_bios_policy.map)) : v => intersight_bios_policy.map[v].moid }
}
#__________________________________________________________
#
# Boot Order Policy Outputs
#__________________________________________________________
output "boot_order" {
description = "Moid's of the Boot Order Policies."
value = { for v in sort(keys(intersight_boot_precision_policy.map)
) : v => intersight_boot_precision_policy.map[v].moid }
}
#__________________________________________________________
#
# Certificate Management Policy Outputs
#__________________________________________________________
output "certificate_management" {
description = "Moid's of the Certificate Management Policies."
value = { for v in sort(keys(intersight_certificatemanagement_policy.map)
) : v => intersight_certificatemanagement_policy.map[v].moid }
}
#__________________________________________________________
#
# Device Connector Policy Outputs
#__________________________________________________________
output "device_connector" {
description = "Moid's of the Device Connector Policies."
value = { for v in sort(keys(intersight_deviceconnector_policy.map)) : v => intersight_deviceconnector_policy.map[v].moid }
}
#__________________________________________________________
#
# Firmware Policy Outputs
#__________________________________________________________
output "firmware" {
description = "Moid's of the Firmware Policies."
value = { for v in sort(keys(intersight_firmware_policy.map)) : v => intersight_firmware_policy.map[v].moid }
}
#__________________________________________________________
#
# IMC Access Policy Outputs
#__________________________________________________________
output "imc_access" {
description = "Moid's of the IMC Access Policies."
value = { for v in sort(keys(intersight_access_policy.map)) : v => intersight_access_policy.map[v].moid }
}
#__________________________________________________________
#
# IPMI over LAN Policy Outputs
#__________________________________________________________
output "ipmi_over_lan" {
description = "Moid's of the IPMI over LAN Policies."
value = { for v in sort(keys(intersight_ipmioverlan_policy.map)) : v => intersight_ipmioverlan_policy.map[v].moid }
}
#__________________________________________________________
#
# LAN Connectivity Policy Outputs
#__________________________________________________________
output "lan_connectivity" {
description = "Moid's of the LAN Connectivity Policies."
value = { for v in sort(keys(intersight_vnic_lan_connectivity_policy.map)
) : v => intersight_vnic_lan_connectivity_policy.map[v].moid }
}
#__________________________________________________________
#
# LDAP Policy Outputs
#__________________________________________________________
output "ldap" {
description = "Moid's of the LDAP Policies."
value = { for v in sort(keys(intersight_iam_ldap_policy.map)) : v => intersight_iam_ldap_policy.map[v].moid }
}
#__________________________________________________________
#
# Local User Policy Outputs
#__________________________________________________________
output "local_user" {
description = "Moid's of the Local User Policies."
value = { for v in sort(keys(intersight_iam_end_point_user_policy.map)
) : v => intersight_iam_end_point_user_policy.map[v].moid }
}
#__________________________________________________________
#
# Network Connectivity Policy Outputs
#__________________________________________________________
output "network_connectivity" {
description = "Moid's of the Network Connectivity Policies."
value = { for v in sort(keys(intersight_networkconfig_policy.map)) : v => intersight_networkconfig_policy.map[v].moid }
}
#__________________________________________________________
#
# NTP Policy Outputs
#__________________________________________________________
output "ntp" {
description = "Moid's of the NTP Policies."
value = { for v in sort(keys(intersight_ntp_policy.map)) : v => intersight_ntp_policy.map[v].moid }
}
#__________________________________________________________
#
# Persistent Memory Policy Outputs
#__________________________________________________________
output "persistent_memory" {
description = "Moid's of the Persistent Memory Policies."
value = { for v in sort(keys(intersight_memory_persistent_memory_policy.map)
) : v => intersight_memory_persistent_memory_policy.map[v].moid }
}
#__________________________________________________________
#
# Port Policy Outputs
#__________________________________________________________
output "port" {
description = "Moid's of the Port Policies."
value = { for v in sort(keys(intersight_fabric_port_policy.map)) : v => intersight_fabric_port_policy.map[v].moid }
}
#__________________________________________________________
#
# Power Policy Outputs
#__________________________________________________________
output "power" {
description = "Moid's of the Power Policies."
value = { for v in sort(keys(intersight_power_policy.map)) : v => intersight_power_policy.map[v].moid }
}
#__________________________________________________________
#
# SAN Connectivity Policy Outputs
#__________________________________________________________
output "san_connectivity" {
description = "Moid's of the SAN Connectivity Policies."
value = { for v in sort(keys(intersight_vnic_san_connectivity_policy.map)
) : v => intersight_vnic_san_connectivity_policy.map[v].moid }
}
#__________________________________________________________
#
# Serial over LAN Policy Outputs
#__________________________________________________________
output "serial_over_lan" {
description = "Moid's of the Serial over LAN Policies."
value = { for v in sort(keys(intersight_sol_policy.map)) : v => intersight_sol_policy.map[v].moid }
}
#__________________________________________________________
#
# SMTP Policy Outputs
#__________________________________________________________
output "smtp" {
description = "Moid's of the SMTP Policies."
value = { for v in sort(keys(intersight_smtp_policy.map)) : v => intersight_smtp_policy.map[v].moid }
}
#__________________________________________________________
#
# SNMP Policy Outputs
#__________________________________________________________
output "snmp" {
description = "Moid's of the SNMP Policies."
value = { for v in sort(keys(intersight_snmp_policy.map)) : v => intersight_snmp_policy.map[v].moid }
}
#__________________________________________________________
#
# SSH Policy Outputs
#__________________________________________________________
output "ssh" {
description = "Moid's of the SSH Policies."
value = { for v in sort(keys(intersight_ssh_policy.map)) : v => intersight_ssh_policy.map[v].moid }
}
#__________________________________________________________
#
# Storage Policy Outputs
#__________________________________________________________
output "storage" {
description = "Moid's of the Storage Policies."
value = { for v in sort(keys(intersight_storage_storage_policy.map)) : v => intersight_storage_storage_policy.map[v].moid }
}
#__________________________________________________________
#
# Switch Control Policy Outputs
#__________________________________________________________
output "switch_control" {
description = "Moid's of the Switch Control Policies."
value = { for v in sort(keys(intersight_fabric_switch_control_policy.map)
) : v => intersight_fabric_switch_control_policy.map[v].moid }
}
#__________________________________________________________
#
# Syslog Policy Outputs
#__________________________________________________________
output "syslog" {
description = "Moid's of the Syslog Policies."
value = { for v in sort(keys(intersight_syslog_policy.map)) : v => intersight_syslog_policy.map[v].moid }
}
#__________________________________________________________
#
# System QoS Policy Outputs
#__________________________________________________________
output "system_qos" {
description = "Moid's of the System QoS Policies."
value = { for v in sort(keys(intersight_fabric_system_qos_policy.map)
) : v => intersight_fabric_system_qos_policy.map[v].moid }
}
#__________________________________________________________
#
# Thermal Policy Outputs
#__________________________________________________________
output "thermal" {
description = "Moid's of the Thermal Policies."
value = { for v in sort(keys(intersight_thermal_policy.map)) : v => intersight_thermal_policy.map[v].moid }
}
#__________________________________________________________
#
# Virtual KVM Policy Outputs
#__________________________________________________________
output "virtual_kvm" {
description = "Moid's of the Virtual KVM Policies."
value = { for v in sort(keys(intersight_kvm_policy.map)) : v => intersight_kvm_policy.map[v].moid }
}
#__________________________________________________________
#
# Virtual Media Policy Outputs
#__________________________________________________________
output "virtual_media" {
description = "Moid's of the Virtual Media Policies."
value = { for v in sort(keys(intersight_vmedia_policy.map)) : v => intersight_vmedia_policy.map[v].moid }
}
#__________________________________________________________
#
# VLAN Policy Outputs
#__________________________________________________________
output "vlan" {
description = "Moid's of the VLAN Policies."
value = { for v in sort(keys(intersight_fabric_eth_network_policy.map)
) : v => intersight_fabric_eth_network_policy.map[v].moid }
}
#__________________________________________________________
#
# VSAN Policy Outputs
#__________________________________________________________
output "vsan" {
description = "Moid's of the VSAN Policies."
value = { for v in sort(keys(intersight_fabric_fc_network_policy.map)) : v => intersight_fabric_fc_network_policy.map[v].moid }
}