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.
34 lines
644 B
YAML
34 lines
644 B
YAML
7 years ago
|
- name: create a tempdir for hostvars
|
||
|
local_action: shell mktemp -d
|
||
|
register: tempdir
|
||
|
|
||
|
- name: write a file w/ hostvars
|
||
|
local_action:
|
||
|
module: lineinfile
|
||
|
dest: "{{ tempdir.stdout }}/vars"
|
||
|
line: '{"foo": "bar"}'
|
||
|
create: true
|
||
|
|
||
|
- name: Create a Host
|
||
|
tower_host:
|
||
|
name: "some-host"
|
||
|
inventory: "Demo Inventory"
|
||
|
state: present
|
||
|
variables: "@{{ tempdir.stdout }}/vars"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|
||
|
|
||
|
- name: Delete a Host
|
||
|
tower_host:
|
||
|
name: "some-host"
|
||
|
inventory: "Demo Inventory"
|
||
|
state: absent
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|