regex replace tower_*: to ''

This commit is contained in:
Seth Foster
2021-04-28 18:17:07 -04:00
parent 44fed1d7c1
commit a695274cb6
33 changed files with 251 additions and 251 deletions

View File

@@ -4,7 +4,7 @@
team_name: "AWX-Collection-tests-tower_team-team-{{ lookup('password', '/dev/null chars=ascii_letters length=16') }}"
- name: Attempt to add a Tower team to a non-existant Organization
tower_team:
team:
name: Test Team
organization: Missing_Organization
state: present
@@ -20,7 +20,7 @@
- "result.total_results == 0"
- name: Create a Tower team
tower_team:
team:
name: "{{ team_name }}"
organization: Default
register: result
@@ -30,7 +30,7 @@
- "result is changed"
- name: Delete a Tower team
tower_team:
team:
name: "{{ team_name }}"
organization: Default
state: absent
@@ -41,7 +41,7 @@
- "result is changed"
- name: Check module fails with correct msg
tower_team:
team:
name: "{{ team_name }}"
organization: Non_Existing_Org
state: present