hub_ee_images

For ee_images in automation hub to load through this interface, you will have to provide the files to load the images from.
As git isn't made for binary manangement, these should be hosted elsewhere and as we want config as code to be a complete unit, we will not use this.
Feel free to use it anyway.
We will show you another way to get these images into automation hub.

group_vars/all/hub_ee_images.yml

As we do not configure ee_images this way, this file is an empty set.

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

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_images.yml

As we do not configure ee_images this way, this file is an empty set.

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

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

group_vars/prod/hub_ee_images.yml

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

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

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

Back