mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
3b941802ac
* ACI ENCAP POOL RANGES: Add new module to support encap ranges * fix module name * remove extra format string
16 lines
430 B
YAML
16 lines
430 B
YAML
- name: ensure vxlan pool exists for tests to kick off
|
|
aci_encap_pool: &aci_pool_present
|
|
host: "{{ aci_hostname }}"
|
|
username: "{{ aci_username }}"
|
|
password: "{{ aci_password }}"
|
|
validate_certs: no
|
|
state: present
|
|
pool: anstest
|
|
pool_type: vxlan
|
|
description: Ansible Test
|
|
|
|
- name: cleanup vxlan pool
|
|
aci_encap_pool:
|
|
<<: *aci_pool_present
|
|
state: absent
|
|
when: pool_present.changed == true
|