redhat-cop / aap_utilities

Ansible Collection for automated deployment of AAP and other objects for general use
https://galaxy.ansible.com/infra/aap_utilities
GNU General Public License v3.0
78 stars 47 forks source link

fix inventory.j2 for AH #38

Closed crenwick93 closed 3 years ago

crenwick93 commented 3 years ago

What does this PR do?

Update to reflect the changes suggested in the issue.

automationhub_pg_database='{{ tower_ah_pg_database }}' automationhub_pg_username='{{ tower_ah_pg_database }}' automationhub_pg_password='{{ tower_ah_pg_database }}'

Should be:

automationhub_pg_database='{{ tower_ah_pg_database }}' automationhub_pg_username='{{ tower_ah_pg_username }}' automationhub_pg_password='{{ tower_ah_pg_password }}'

How should this be tested?

Tested manually, deploys AH successfully with this change

Is there a relevant Issue open for this?

https://github.com/redhat-cop/tower_utilities/issues/37

Other Relevant info, PRs, etc.