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
17 lines
455 B
YAML
17 lines
455 B
YAML
- name: ensure vsan 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: vsan
|
|
allocation_mode: static
|
|
description: Ansible Test
|
|
|
|
- name: cleanup vsan pool
|
|
aci_encap_pool:
|
|
<<: *aci_pool_present
|
|
state: absent
|
|
when: pool_present.changed == true
|