hub_ee_repositories

group_vars/all/hub_ee_repositories.yml

As we do not configure extra ee_repositories in automation hub, this file could be an empty set. For educational purposes, we added the removal of a custom ee_repository.

---
hub_ee_repositories_all:
   - name: abc123
     description: Not a valid repository
     readme: "# My ee repo"
     state: absent
...

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/hub_ee_repositories.yml

As we do not configure extra ee_repositories in automation hub, this file is an empty set.

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

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

group_vars/prod/hub_ee_repositories.yml

As we do not configure extra ee_repositories in automation hub, this file is an empty set.

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

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

Back