mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
YAML
17 lines
430 B
YAML
7 years ago
|
- 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
|