File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,10 @@ A comprehensive example using this module is available here: https://github.com/
37
37
38
38
| Name | Description |
39
39
| ------| -------------|
40
+ | <a name =" output_interface " ></a > [ interface] ( #output\_ interface ) | Interface Identifiers<br > leaf\_ interfaces:<br > policy\_ groups<br > access: Fabric => Access Policies => Interfaces => Leaf Interfaces => Policy Groups => Leaf Access Port.<br > breakout: Fabric => Access Policies => Interfaces => Leaf Interfaces => Policy Groups => Leaf Breakout Port Group.<br > bundle: Fabric => Access Policies => Interfaces => Leaf Interfaces => Policy Groups => [ VPC Interface \| VPC Interface ] .<br > spine\_ interfaces:<br > policy\_ groups: Fabric => Access Policies => Interfaces => Spine Interfaces => Policy Groups |
40
41
| <a name =" output_physical_and_external_domains " ></a > [ physical\_ and\_ external\_ domains] ( #output\_ physical\_ and\_ external\_ domains ) | * l3\_ domains - Identifiers for L3 Domains. Fabric => Access Policies => Physical and External Domains => L3 Domains.<br >* physical\_ domains - Identifiers for Physical Domains. Fabric => Access Policies => Physical and External Domains => Physical Domains. |
41
42
| <a name =" output_global " ></a > [ global] ( #output\_ global ) | Global Identifiers<br > attachable\_ access\_ entity\_ profiles: Fabric => Access Policies => Policies => Global => Attachable Access Entity Profiles<br > dhcp\_ relay: Fabric => Access Policies => Policies => Global => DHCP Relay<br > error\_ disabled\_ recovery\_ policy: Fabric => Access Policies => Policies => Global => Error Disabled Recovery Profiles<br > mcp\_ instance\_ policy: Fabric => Access Policies => Policies => Global => MCP Instance Policy - default<br > qos\_ class: Fabric => Access Policies => Policies => Global => QoS Class |
43
+ | <a name =" output_aaep_to_epgs " ></a > [ aaep\_ to\_ epgs] ( #output\_ aaep\_ to\_ epgs ) | n/a |
42
44
| <a name =" output_policies " ></a > [ policies] ( #output\_ policies ) | Policies Identifiers<br > interface:<br > cdp\_ interface: Fabric => Access Policies => Policies => Interfaces => CDP Interface<br > fibre\_ channel\_ interface: Fabric => Access Policies => Policies => Interfaces => Fibre Channel Interface<br > l2\_ interface: Fabric => Access Policies => Policies => Interfaces => L2 Interface<br > link\_ level: Fabric => Access Policies => Policies => Interfaces => Link Level.<br > cdp\_ interface: Fabric => Access Policies => Policies => Interfaces => LLDP Interface.<br > cdp\_ interface: Fabric => Access Policies => Policies => Interfaces => Port Channel.<br > cdp\_ interface: Fabric => Access Policies => Policies => Interfaces => Port Security.<br > cdp\_ interface: Fabric => Access Policies => Policies => Interfaces => Spanning-Tree Interface. |
43
45
| <a name =" output_pools " ></a > [ pools] ( #output\_ pools ) | Identifiers for VLAN Pools. Fabric => Access Policies => Pools => VLAN. |
44
46
| <a name =" output_switches " ></a > [ switches] ( #output\_ switches ) | Switches Identifiers<br > leaf\_ switches:<br > policy\_ groups: Fabric => Access Policies => Switches => Leaf Switches => Policy Groups<br > spine\_ switches:<br > policy\_ groups: Fabric => Access Policies => Switches => Spine Switches => Policy Groups |
Original file line number Diff line number Diff line change @@ -94,8 +94,8 @@ locals {
94
94
attachable_access_entity_profiles = {
95
95
for k , v in lookup (local. global , " attachable_access_entity_profiles" , {}) : v . name => {
96
96
access_or_native_vlan = lookup (v, " access_or_native_vlan" , 0 )
97
- allowed_vlans = lookup (v, " allowed_vlans" , " " )
98
- description = lookup (v, " description" , local. aaep . description )
97
+ allowed_vlans = lookup (v, " allowed_vlans" , " " )
98
+ description = lookup (v, " description" , local. aaep . description )
99
99
domains = compact (concat (
100
100
[for i in lookup (v, " l3_domains" , []) : aci_l3_domain_profile . map [" ${ i } " ]. id ],
101
101
[for i in lookup (v, " physical_domains" , []) : aci_physical_domain . map [" ${ i } " ]. id ],
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ output "global" {
84
84
output " aaep_to_epgs" {
85
85
value = { for k , v in local . attachable_access_entity_profiles : k => {
86
86
access_or_native_vlan = v.access_or_native_vlan
87
- allowed_vlans = v.allowed_vlans
88
- name = k
89
- }}
87
+ allowed_vlans = v.allowed_vlans
88
+ name = k
89
+ } }
90
90
}
91
91
92
92
/* _____________________________________________________________________________________________________________________
You can’t perform that action at this time.
0 commit comments