1
+ /* _____________________________________________________________________________________________________________________
2
+
3
+ APIC Connectivity Preference — Outputs
4
+ _______________________________________________________________________________________________________________________
5
+ */
1
6
output "apic_connectivity_preference" {
2
7
description = " Identifiers for APIC Connectivity Preference: System Settings => APIC Connectivity Preference"
3
8
value = { for v in sort (
4
9
keys (aci_mgmt_preference. apic_connectivity_preference )
5
10
) : v => aci_mgmt_preference . apic_connectivity_preference [v ]. id }
6
11
}
7
12
13
+ /* _____________________________________________________________________________________________________________________
14
+
15
+ BGP Route Reflector — Outputs
16
+ _______________________________________________________________________________________________________________________
17
+ */
8
18
output "bgp_route_reflector" {
9
19
description = <<- EOT
10
20
Identifiers for:
@@ -23,13 +33,23 @@ output "bgp_route_reflector" {
23
33
}
24
34
}
25
35
36
+ /* _____________________________________________________________________________________________________________________
37
+
38
+ COOP Group — Outputs
39
+ _______________________________________________________________________________________________________________________
40
+ */
26
41
output "coop_group" {
27
42
description = " Identifiers for COOP Group: System Settings => COOP Group"
28
43
value = { for v in sort (
29
44
keys (aci_coop_policy. coop_group )
30
45
) : v => aci_coop_policy . coop_group [v ]. id }
31
46
}
32
47
48
+ /* _____________________________________________________________________________________________________________________
49
+
50
+ Endpoint Controls — Outputs
51
+ _______________________________________________________________________________________________________________________
52
+ */
33
53
output "endpoint_controls" {
34
54
description = <<- EOT
35
55
Identifiers for:
@@ -52,6 +72,11 @@ output "endpoint_controls" {
52
72
}
53
73
}
54
74
75
+ /* _____________________________________________________________________________________________________________________
76
+
77
+ Fabric Wide Settings — Outputs
78
+ _______________________________________________________________________________________________________________________
79
+ */
55
80
output "fabric_wide_settings" {
56
81
description = " Identifiers for Fabric Wide Settings: System Settings => Fabric Wide Settings"
57
82
value = {
@@ -60,22 +85,42 @@ output "fabric_wide_settings" {
60
85
}
61
86
}
62
87
88
+ /* _____________________________________________________________________________________________________________________
89
+
90
+ Global AES Encryption Settings — Outputs
91
+ _______________________________________________________________________________________________________________________
92
+ */
63
93
output "global_aes_encryption_settings" {
64
94
description = " Identifiers for Global AES Encryption Settings: System Settings => Global AES Encryption Settings"
65
95
value = { for v in sort (keys (aci_encryption_key. global_aes_passphrase )
66
96
) : v => aci_encryption_key . global_aes_passphrase [v ]. id }
67
97
}
68
98
99
+ /* _____________________________________________________________________________________________________________________
100
+
101
+ ISIS Policy — Outputs
102
+ _______________________________________________________________________________________________________________________
103
+ */
69
104
output "isis_policy" {
70
105
description = " Identifiers for ISIS Policy: System Settings => ISIS Policy"
71
106
value = { for v in sort (keys (aci_isis_domain_policy. isis_policy )) : v => aci_isis_domain_policy . isis_policy [v ]. id }
72
107
}
73
108
109
+ /* _____________________________________________________________________________________________________________________
110
+
111
+ Port Tracking — Outputs
112
+ _______________________________________________________________________________________________________________________
113
+ */
74
114
output "port_tracking" {
75
115
description = " Identifiers for Port Tracking: System Settings => Port Tracking"
76
116
value = { for v in sort (keys (aci_port_tracking. port_tracking )) : v => aci_port_tracking . port_tracking [v ]. id }
77
117
}
78
118
119
+ /* _____________________________________________________________________________________________________________________
120
+
121
+ PTP and Latency Measurement — Outputs
122
+ _______________________________________________________________________________________________________________________
123
+ */
79
124
output "ptp_and_latency_measurement" {
80
125
description = " Identifiers for PTP and Latency Measurement: System Settings => PTP and Latency Measurement"
81
126
value = { for v in sort (keys (aci_rest_managed. ptp_and_latency_measurement )
0 commit comments