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.
48 lines
1013 B
YAML
48 lines
1013 B
YAML
- 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 Group
|
|
tower_group:
|
|
name: Some Group
|
|
inventory: Demo Inventory
|
|
state: present
|
|
source: ec2
|
|
variables: "@{{ tempdir.stdout }}/vars"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Delete a Group
|
|
tower_group:
|
|
name: Some Group
|
|
inventory: Demo Inventory
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Check module fails with correct msg
|
|
tower_group:
|
|
name: test-group
|
|
description: Group Description
|
|
inventory: test-non-existing-inventory
|
|
state: present
|
|
register: result
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.msg =='Failed to update the group, inventory not found: The requested object could not be found.'"
|