Skip to content

Commit 2eeab58

Browse files
committed
added output section descriptions
1 parent ee96ca6 commit 2eeab58

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

outputs.tf

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1+
/*_____________________________________________________________________________________________________________________
2+
3+
APIC Connectivity Preference — Outputs
4+
_______________________________________________________________________________________________________________________
5+
*/
16
output "apic_connectivity_preference" {
27
description = "Identifiers for APIC Connectivity Preference: System Settings => APIC Connectivity Preference"
38
value = { for v in sort(
49
keys(aci_mgmt_preference.apic_connectivity_preference)
510
) : v => aci_mgmt_preference.apic_connectivity_preference[v].id }
611
}
712

13+
/*_____________________________________________________________________________________________________________________
14+
15+
BGP Route Reflector — Outputs
16+
_______________________________________________________________________________________________________________________
17+
*/
818
output "bgp_route_reflector" {
919
description = <<-EOT
1020
Identifiers for:
@@ -23,13 +33,23 @@ output "bgp_route_reflector" {
2333
}
2434
}
2535

36+
/*_____________________________________________________________________________________________________________________
37+
38+
COOP Group — Outputs
39+
_______________________________________________________________________________________________________________________
40+
*/
2641
output "coop_group" {
2742
description = "Identifiers for COOP Group: System Settings => COOP Group"
2843
value = { for v in sort(
2944
keys(aci_coop_policy.coop_group)
3045
) : v => aci_coop_policy.coop_group[v].id }
3146
}
3247

48+
/*_____________________________________________________________________________________________________________________
49+
50+
Endpoint Controls — Outputs
51+
_______________________________________________________________________________________________________________________
52+
*/
3353
output "endpoint_controls" {
3454
description = <<-EOT
3555
Identifiers for:
@@ -52,6 +72,11 @@ output "endpoint_controls" {
5272
}
5373
}
5474

75+
/*_____________________________________________________________________________________________________________________
76+
77+
Fabric Wide Settings — Outputs
78+
_______________________________________________________________________________________________________________________
79+
*/
5580
output "fabric_wide_settings" {
5681
description = "Identifiers for Fabric Wide Settings: System Settings => Fabric Wide Settings"
5782
value = {
@@ -60,22 +85,42 @@ output "fabric_wide_settings" {
6085
}
6186
}
6287

88+
/*_____________________________________________________________________________________________________________________
89+
90+
Global AES Encryption Settings — Outputs
91+
_______________________________________________________________________________________________________________________
92+
*/
6393
output "global_aes_encryption_settings" {
6494
description = "Identifiers for Global AES Encryption Settings: System Settings => Global AES Encryption Settings"
6595
value = { for v in sort(keys(aci_encryption_key.global_aes_passphrase)
6696
) : v => aci_encryption_key.global_aes_passphrase[v].id }
6797
}
6898

99+
/*_____________________________________________________________________________________________________________________
100+
101+
ISIS Policy — Outputs
102+
_______________________________________________________________________________________________________________________
103+
*/
69104
output "isis_policy" {
70105
description = "Identifiers for ISIS Policy: System Settings => ISIS Policy"
71106
value = { for v in sort(keys(aci_isis_domain_policy.isis_policy)) : v => aci_isis_domain_policy.isis_policy[v].id }
72107
}
73108

109+
/*_____________________________________________________________________________________________________________________
110+
111+
Port Tracking — Outputs
112+
_______________________________________________________________________________________________________________________
113+
*/
74114
output "port_tracking" {
75115
description = "Identifiers for Port Tracking: System Settings => Port Tracking"
76116
value = { for v in sort(keys(aci_port_tracking.port_tracking)) : v => aci_port_tracking.port_tracking[v].id }
77117
}
78118

119+
/*_____________________________________________________________________________________________________________________
120+
121+
PTP and Latency Measurement — Outputs
122+
_______________________________________________________________________________________________________________________
123+
*/
79124
output "ptp_and_latency_measurement" {
80125
description = "Identifiers for PTP and Latency Measurement: System Settings => PTP and Latency Measurement"
81126
value = { for v in sort(keys(aci_rest_managed.ptp_and_latency_measurement)

0 commit comments

Comments
 (0)