aci_l3out – Manage Layer 3 Outside (L3Out) objects (l3ext:Out)¶
New in version 2.6.
Parameters¶
Notes¶
Note
The
tenant
anddomain
andvrf
used must exist before using this module in your playbook. The aci_tenant and aci_domain and aci_vrf modules can be used for this.
See Also¶
See also
- aci_tenant – Manage tenants (fv:Tenant)
The official documentation on the aci_tenant module.
- aci_domain – Manage physical, virtual, bridged, routed or FC domain profiles (phys:DomP, vmm:DomP, l2ext:DomP, l3ext:DomP, fc:DomP)
The official documentation on the aci_domain module.
- aci_vrf – Manage contexts or VRFs (fv:Ctx)
The official documentation on the aci_vrf 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: Add a new L3Out
aci_l3out:
host: apic
username: admin
password: SomeSecretPassword
tenant: production
name: prod_l3out
description: L3Out for Production tenant
domain: l3dom_prod
vrf: prod
l3protocol: ospf
state: present
delegate_to: localhost
- name: Delete L3Out
aci_l3out:
host: apic
username: admin
password: SomeSecretPassword
tenant: production
name: prod_l3out
state: absent
delegate_to: localhost
- name: Query L3Out information
aci_l3out:
host: apic
username: admin
password: SomeSecretPassword
tenant: production
name: prod_l3out
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:
Status¶
This module is not guaranteed to have a backwards compatible interface. [preview]
This module is maintained by an Ansible Partner. [certified]
Authors¶
Rostyslav Davydenko (@rost-d)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.