cisco.aci.aci_l3out_logical_interface_vpc_member – Manage Member Node objects (l3extMember:Member)¶
Note
This plugin is part of the cisco.aci collection (version 2.0.0).
To install it use: ansible-galaxy collection install cisco.aci
.
To use it in a playbook, specify: cisco.aci.aci_l3out_logical_interface_vpc_member
.
Parameters¶
Notes¶
Note
The
tenant
,l3out
,logical_node
,logical_interface
,path_dn
andmember
used must exist before using this module in your playbook. The cisco.aci.aci_tenant and cisco.aci.aci_l3out modules can be used for this.
See Also¶
See also
- cisco.aci.aci_tenant
The official documentation on the cisco.aci.aci_tenant module.
- cisco.aci.aci_l3out
The official documentation on the cisco.aci.aci_l3out module.
- APIC Management Information Model reference
More information about the internal APIC class l3ext:Out.
- Cisco ACI Guide
Detailed information on how to manage your ACI infrastructure using Ansible.
- Developing Cisco ACI modules
Detailed guide on how to write your own Cisco ACI modules to contribute.
Examples¶
- name: Create a VPC member
cisco.aci.aci_l3out_logical_interface_vpc_member:
host: apic
username: admin
password: SomeSecretPassword
tenant: tenantName
l3out: l3out
logical_node: nodeName
logical_interface: interfaceName
path_dn: topology/pod-1/protpaths-101-102/pathep-[policy_group_name]
side: A
state: present
delegate_to: localhost
- name: Delete a VPC member
cisco.aci.aci_l3out_logical_interface_vpc_member:
host: apic
username: admin
password: SomeSecretPassword
tenant: tenantName
l3out: l3out
logical_node: nodeName
logical_interface: interfaceName
path_dn: topology/pod-1/protpaths-101-102/pathep-[policy_group_name]
side: A
state: absent
delegate_to: localhost
- name: Query all VPC members
cisco.aci.aci_l3out_logical_interface_vpc_member:
host: apic
username: admin
password: SomeSecretPassword
tenant: production
state: query
delegate_to: localhost
register: query_result
- name: Query a specific VPC member under l3out
cisco.aci.aci_l3out_logical_interface_vpc_member:
host: apic
username: admin
password: SomeSecretPassword
tenant: tenantName
l3out: l3out
logical_node: nodeName
logical_interface: interfaceName
path_dn: topology/pod-1/protpaths-101-102/pathep-[policy_group_name]
side: A
state: query
delegate_to: localhost
register: query_result
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Anvitha Jain(@anvitha-jain)