mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-18 05:51:47 -05:00
21 lines
479 B
YAML
21 lines
479 B
YAML
---
|
|
- name: Create a Label
|
|
tower_label:
|
|
name: important
|
|
organization: Default
|
|
state: present
|
|
|
|
- name: Check module fails with correct msg
|
|
tower_label:
|
|
name: "Test Label"
|
|
organization: "Non existing org"
|
|
state: present
|
|
register: result
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.msg == 'Failed to update label, organization not found: The requested object could not be found.'"
|
|
|
|
# TODO: Deleting labels doesn't seem to work currently
|