mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
22 lines
366 B
YAML
22 lines
366 B
YAML
|
- name: Create an Inventory
|
||
|
tower_inventory:
|
||
|
name: my-inventory
|
||
|
organization: Default
|
||
|
state: present
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|
||
|
|
||
|
- name: Delete an Inventory
|
||
|
tower_inventory:
|
||
|
name: my-inventory
|
||
|
organization: Default
|
||
|
state: absent
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|