2017-12-12 08:51:19 +01:00
|
|
|
---
|
|
|
|
- name: ensure vlan pool does not exist for tests to kick off
|
|
|
|
aci_encap_pool: &aci_pool_absent_static
|
|
|
|
host: "{{ aci_hostname }}"
|
|
|
|
username: "{{ aci_username }}"
|
|
|
|
password: "{{ aci_password }}"
|
2018-01-21 00:38:20 +01:00
|
|
|
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
|
|
|
use_ssl: '{{ aci_use_ssl | default(true) }}'
|
|
|
|
use_proxy: '{{ aci_use_proxy | default(true) }}'
|
2018-08-06 22:42:10 +02:00
|
|
|
output_level: '{{ aci_output_level | default("info") }}'
|
2017-12-12 08:51:19 +01:00
|
|
|
pool: anstest
|
|
|
|
pool_type: vsan
|
2018-02-15 02:59:54 +01:00
|
|
|
pool_allocation_mode: static
|
2018-08-06 22:42:10 +02:00
|
|
|
state: absent
|