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.
22 lines
366 B
YAML
22 lines
366 B
YAML
7 years ago
|
- 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"
|