This commit is contained in:
2023-06-13 15:07:59 +02:00
parent bf0532f293
commit cae29f1272

29
01_awx.yml Normal file
View File

@@ -0,0 +1,29 @@
---
- name: Clean up AWX
hosts: localhost
connection: local
tasks:
- name: Remove Demo Template
awx.awx.job_template:
name: Demo Job Template
organization: Default
state: absent
- name: Remove Demo credential
awx.awx.credential:
name: Demo Credential
credential_type: Machine
state: absent
- name: Remove Demo inventory
awx.awx.inventory:
name: Demo Inventory
organization: Default
state: absent
- name: Remove Demo project
awx.awx.project:
name: Demo Project
organization: Default
state: absent