Hello all, in one of my AWX projects I have the normal collections directory and the requirements.yml underneath. In the requirements.yml I’m listing a single ansible-galaxy requirement needed. I now need not only fortinet.fortios, but community.general as well.
My original requirements.yml looked like this:
`—
collections:
- name: fortinet.fortios
version: 2.3.5
source: https://galaxy.ansible.com``
I tried adding a line for community general underneath and AWX didnt like that when I refreshed the project:
`—
collections:
- name: fortinet.fortios
version: 2.3.5
source: https://galaxy.ansible.com - name: community.general
version: 8.30
source: https://galaxy.ansible.com``
Is there anyway for me to have AWX pull both requirements? Thank you in advance!