blob: a7fb749b9b50b53410d9f141bded271866656df1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- 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 }}"
validate_certs: '{{ aci_validate_certs | default(false) }}'
use_ssl: '{{ aci_use_ssl | default(true) }}'
use_proxy: '{{ aci_use_proxy | default(true) }}'
state: absent
pool: anstest
pool_type: vsan
pool_allocation_mode: static
|