18
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
18
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
name: Cat Lady Membership Application
|
||||
description: Tell us what qualifies you to be a registered cat fancier.
|
||||
body:
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Your favorite cat
|
||||
placeholder: "Examples: Garfield, Maru, Mr. Mistoffolees"
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
attributes:
|
||||
label: How many rooms in your house are dedicated to cats?
|
||||
options:
|
||||
- 1
|
||||
- 2
|
||||
- All of them
|
||||
issue_body: false
|
||||
BIN
ansible-product_demos-1.2.3.tar.gz
Normal file
BIN
ansible-product_demos-1.2.3.tar.gz
Normal file
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: add azure credential
|
||||
tower_credential:
|
||||
awx.awx.tower_credential:
|
||||
name: azure_credential
|
||||
description: Azure Service Principle
|
||||
organization: "Default"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: add tower project
|
||||
tower_project:
|
||||
awx.awx.tower_project:
|
||||
name: "{{ vars[demo].project.name }}"
|
||||
description: "{{ vars[demo].project.description }}"
|
||||
organization: "{{ vars[demo].project.organization }}"
|
||||
@@ -11,8 +11,22 @@
|
||||
tower_host: "{{ my_tower_host }}"
|
||||
validate_certs: false
|
||||
|
||||
- name: show values
|
||||
debug:
|
||||
msg:
|
||||
- "name: {{ vars[demo].name }}"
|
||||
- "description: {{ vars[demo].description }}"
|
||||
- "job_type: {{ vars[demo].job_type }}"
|
||||
- "inventory: {{ vars[demo].inventory }}"
|
||||
- "project: {{ vars[demo].project.name }}"
|
||||
- "playbook: {{ vars[demo].playbook }}"
|
||||
- "fact_caching_enabled: {{ vars[demo].fact_caching_enabled | default('false') }}"
|
||||
- "credential: {{ vars[demo].credential }}"
|
||||
- "survey_enabled: {{ vars[demo].survey_enabled | default('false') }}"
|
||||
|
||||
|
||||
- name: add single job template without survey
|
||||
tower_job_template:
|
||||
awx.awx.tower_job_template:
|
||||
name: "{{ vars[demo].name }}"
|
||||
description: "{{ vars[demo].description }}"
|
||||
job_type: "{{ vars[demo].job_type }}"
|
||||
@@ -34,7 +48,7 @@
|
||||
retries: 5
|
||||
|
||||
- name: add single job template with survey
|
||||
tower_job_template:
|
||||
awx.awx.tower_job_template:
|
||||
name: "{{ vars[demo].name }}"
|
||||
description: "{{ vars[demo].description }}"
|
||||
job_type: "{{ vars[demo].job_type }}"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
- name: block for job template loop
|
||||
block:
|
||||
- name: "add tower project job_template_loop.yml"
|
||||
tower_project:
|
||||
awx.awx.tower_project:
|
||||
name: "{{ item.value.project.name }}"
|
||||
description: "{{ item.value.project.description }}"
|
||||
organization: "{{ item.value.project.organization }}"
|
||||
@@ -20,7 +20,7 @@
|
||||
- workshop_type in item.value.workshop_type
|
||||
|
||||
- name: "add job template {{ item.value.name }} without survey job_template_loop.yml"
|
||||
tower_job_template:
|
||||
awx.awx.tower_job_template:
|
||||
name: "{{ item.value.name }}"
|
||||
description: "{{ item.value.description }}"
|
||||
job_type: "{{ item.value.job_type }}"
|
||||
@@ -42,7 +42,7 @@
|
||||
retries: 5
|
||||
|
||||
- name: "add job template {{ item.value.name }} with survey"
|
||||
tower_job_template:
|
||||
awx.awx.tower_job_template:
|
||||
name: "{{ item.value.name }}"
|
||||
description: "{{ item.value.description }}"
|
||||
job_type: "{{ item.value.job_type }}"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
msg: "there is no public cloud credentials for this install, installing dummy creds"
|
||||
|
||||
- name: add azure credential
|
||||
tower_credential:
|
||||
awx.awx.tower_credential:
|
||||
name: azure_credential
|
||||
description: Azure Service Principle
|
||||
organization: "Default"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
loop: "{{ hostvars[inventory_hostname][demo].job_templates|dict2items }}"
|
||||
|
||||
- name: "install workflow template {{ hostvars[inventory_hostname][demo].name }}"
|
||||
tower_workflow_template:
|
||||
awx.awx.tower_workflow_template:
|
||||
name: "{{ hostvars[inventory_hostname][demo].name }}"
|
||||
description: "{{ hostvars[inventory_hostname][demo].description }}"
|
||||
organization: "{{ hostvars[inventory_hostname][demo].organization }}"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
loop: "{{ item.value.job_templates|dict2items }}"
|
||||
|
||||
- name: "INSIDE LOOP - install workflow template {{ item.value.name }}"
|
||||
tower_workflow_template:
|
||||
awx.awx.tower_workflow_template:
|
||||
name: "{{ item.value.name }}"
|
||||
description: "{{ item.value.description }}"
|
||||
organization: "{{ item.value.organization }}"
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
---
|
||||
- src: dev-sec.ssh-hardening
|
||||
- src: mindpointgroup.rhel7-cis
|
||||
- src: redhatofficial.rhel8_pci_dss
|
||||
- src: linux-system-roles.firewall
|
||||
- src: linux-system-roles.timesync
|
||||
|
||||
Reference in New Issue
Block a user