Skip to content

Commit f7385a4

Browse files
committed
updating README
1 parent f7874ac commit f7385a4

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ A comprehensive example using this module is available here: https://github.com/
3737

3838
| Name | Description |
3939
|------|-------------|
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 |
4041
| <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. |
4142
| <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 |
4244
| <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. |
4345
| <a name="output_pools"></a> [pools](#output\_pools) | Identifiers for VLAN Pools. Fabric => Access Policies => Pools => VLAN. |
4446
| <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 |

locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ locals {
9494
attachable_access_entity_profiles = {
9595
for k, v in lookup(local.global, "attachable_access_entity_profiles", {}) : v.name => {
9696
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)
9999
domains = compact(concat(
100100
[for i in lookup(v, "l3_domains", []) : aci_l3_domain_profile.map["${i}"].id],
101101
[for i in lookup(v, "physical_domains", []) : aci_physical_domain.map["${i}"].id],

outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ output "global" {
8484
output "aaep_to_epgs" {
8585
value = { for k, v in local.attachable_access_entity_profiles : k => {
8686
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+
} }
9090
}
9191

9292
/*_____________________________________________________________________________________________________________________

0 commit comments

Comments
 (0)