mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
28 lines
504 B
YAML
28 lines
504 B
YAML
|
- name: Create an SCM Credential
|
||
|
tower_credential:
|
||
|
name: SCM Credential for Project
|
||
|
organization: Default
|
||
|
kind: scm
|
||
|
|
||
|
- name: Create a Project
|
||
|
tower_project:
|
||
|
name: my-project
|
||
|
organization: Default
|
||
|
state: present
|
||
|
scm_credential: SCM Credential for Project
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|
||
|
|
||
|
- name: Delete a Project
|
||
|
tower_project:
|
||
|
name: my-project
|
||
|
state: absent
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|