gateway_organizations

In this file, we configure all organizations(teams) that need access to the automation platform.
Only the organization(team) name and description are configured.
An id is dynamicly assigned to the organization.

group_vars/all/gateway_organizations.yml

---
aap_organizations_all:
  - name: MGT
    description: 'Automation platform management'
 ...

But you can already see that the variable name used here has the "_all" extension, so the variable will not be overridden as this is not quite a inventory.
Why we do this, will become clear in a moment.

group_vars/dev/gateway_organizations.yml

As we do not configure extra organizations in rhaap, this file is an empty set.

---
gateway_organizations_dev: []
  # No extra config exists
...

Here the variable has the "_dev" extension, so the variable will not be overridden.

group_vars/prod/gateway_organizations.yml

As we do not configure extra organizations in rhaap, this file is an empty set.

---
gateway_organizations_prod: []
  # No extra config exists
...

Here the variable has the "_prod" extension, so the variable will not be overridden.

Back