aci_interface_policy_cdp – Manage CDP interface policies (cdp:IfPol)¶
New in version 2.9.
Parameters¶
See Also¶
See also
- APIC Management Information Model reference
- More information about the internal APIC class cdp:IfPol.
- 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 CDP Test Policy
  aci_interface_policy_cdp:
    name: Ansible_CDP_Test_Policy
    host: apic.example.com
    username: admin
    password: adminpass
    state: present
- name: Remove CDP Test Policy
  aci_interface_policy_cdp:
    name: Ansible_CDP_Test_Policy
    host: apic.example.com
    username: admin
    password: adminpass
    output_level: debug
    state: absent
- name: Query CDP Policy
  aci_interface_policy_cdp:
    host: apic.example.com
    username: admin
    password: adminpass
    state: query
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 the Ansible Community. [community]
Authors¶
- Tim Knipper (@tknipper11)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
