Merge pull request #35 from IPvSean/master

fixing issues with RHPDS and booting F5 demo
This commit is contained in:
Sean Cavanaugh
2021-09-27 14:56:57 -04:00
committed by GitHub
14 changed files with 11 additions and 20 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ choose_demo.yml
choose_demo_example_azure.yml
choose_demo_example_aws.yml
.ansible.cfg
*.gz

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,16 +1,17 @@
---
- name: add azure credential
awx.awx.tower_credential:
awx.awx.credential:
name: azure_credential
description: Azure Service Principle
organization: "Default"
state: present
kind: azure_rm
subscription: "{{ my_subscription }}"
tenant: "{{ my_tenant }}"
client: "{{ my_client }}"
secret: "{{ my_secret }}"
tower_username: "{{ my_tower_username }}"
tower_password: "{{ my_tower_password }}"
tower_host: "{{ my_tower_host }}"
credential_type: Microsoft Azure Resource Manager
inputs:
subscription: "{{ my_subscription }}"
tenant: "{{ my_tenant }}"
client: "{{ my_client }}"
secret: "{{ my_secret }}"
controller_username: "{{ my_controller_username }}"
controller_password: "{{ my_controller_password }}"
controller_host: "{{ my_controller_host }}"
validate_certs: false

View File

@@ -4,14 +4,3 @@
- name: "install all job templates in relation to workflow {{ job_template_definitions[demo].name }}"
include_tasks: add_job_template.yml
loop: "{{ job_template_definitions[demo].job_templates|dict2items }}"
- name: "install workflow template {{ job_template_definitions[demo].name }}"
awx.awx.tower_workflow_template:
name: "{{ job_template_definitions[demo].name }}"
description: "{{ job_template_definitions[demo].description }}"
organization: "{{ job_template_definitions[demo].organization }}"
schema: "{{ job_template_definitions[demo].schema }}"
tower_username: "{{ my_tower_username }}"
tower_password: "{{ my_tower_password }}"
tower_host: "{{ my_tower_host }}"
validate_certs: false