Skip to content

Commit

Permalink
[ignore] add examples for PC and VPC to aci_access_port_to_interface_…
Browse files Browse the repository at this point in the history
…policy_leaf_profile module documentation
  • Loading branch information
akinross authored and lhercot committed Oct 3, 2023
1 parent 4cee5c5 commit be1da81
Showing 1 changed file with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
state: present
delegate_to: localhost
- name: Associate an interface access port selector to an Interface Policy Leaf Profile (w/o policy group) (check if this works)
- name: Associate an interface access port selector to an Interface Policy Leaf Profile (w/o policy group)
cisco.aci.aci_access_port_to_interface_policy_leaf_profile:
host: apic
username: admin
Expand Down Expand Up @@ -224,6 +224,38 @@
fex_id: 105
state: present
delegate_to: localhost
- name: Create and Bind Access Port Selector with PC Policy Group
cisco.aci.aci_access_port_to_interface_policy_leaf_profile:
host: apic
username: admin
password: SomeSecretPassword
interface_profile: leafintprfname
access_port_selector: accessportselectorname
policy_group: pcintprftest
access_port_selector_name: anstest_pc_accessportselector
interface_type: port_channel
port_blk: leafportblkname
from_port: 13
to_port: 13
state: present
delegate_to: localhost
- name: Create and Bind Access Port Selector with VPC Policy Group
cisco.aci.aci_access_port_to_interface_policy_leaf_profile:
host: apic
username: admin
password: SomeSecretPassword
interface_profile: leafintprfname
access_port_selector: accessportselectorname
policy_group: vpcintprftest
access_port_selector_name: anstest_vpc_accessportselector
interface_type: vpc
port_blk: leafportblkname
from_port: 13
to_port: 13
state: present
delegate_to: localhost
"""

RETURN = r"""
Expand Down

0 comments on commit be1da81

Please sign in to comment.