aap_auth.yml.j2 template

This template will create a file in the host_vars directory that contains the autentication variables for the organization admin account that is used by the aap_configuration collection.

---
aap_hostname: {{ aap_env[curr_env]['rhaap_hostname'] }}
aap_validate_certs: false
aap_username: CaC_admin_{{ organization_short_name | upper }}
aap_password: !vault |
{% filter indent(width=10, first=true) %}
{{ team_password | vault(team_password,inventory_hostname,'') }}
{%- endfilter -%}

The credential placed in this file is the organization admin of this organization, not an admin account for rhaap.
This credential is also created by this playbook.
The encrypted password here is the team_password you specified on the survey and should be at least 15 chars(base64 encryptable!).

Back