Skip to content

Instantly share code, notes, and snippets.

@dmsimard
Last active May 19, 2022 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmsimard/bcab919e6b5818eda68ca54d2843826f to your computer and use it in GitHub Desktop.
Save dmsimard/bcab919e6b5818eda68ca54d2843826f to your computer and use it in GitHub Desktop.
git repos for collections in ansible package
#!/usr/bin/env python3
# Query an ansible.in file to retrieve the list of collections included in the Ansible
# package so we can query galaxy and retrieve their git repositories.
# ansible.in files can be cloned from ansible-build-data:
# - https://github.com/ansible-community/ansible-build-data/blob/main/2.10/ansible.in
# - https://github.com/ansible-community/ansible-build-data/blob/main/3/ansible.in
import argparse
import json
import logging
import requests
# from requests.adapters import HTTPAdapter
import time
GALAXY = "https://galaxy.ansible.com"
NAMESPACES = f"{GALAXY}/api/v1/namespaces"
REPOSITORIES = f"{GALAXY}/api/v1/repositories"
COLLECTIONS_API = f"{GALAXY}/api/v2/collections"
# Retry Galaxy API calls if they fail
RETRY_COUNT = 15
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument("--infile", help="Path to an ansible.in file", required=True)
parser.add_argument(
"--ignore",
help=(
"Omit repositories belonging to specified git organizations (not collection namespaces), can be repeated.\n"
"For example: --ignore ansible --ignore ansible-community --ignore ansible-collections\n"
),
action="append",
default=[],
required=False,
)
args = parser.parse_args()
return args
def query_galaxy(session, url):
"""
Queries galaxy and re-tries a few times on failures which can improve the odds
of succeeding past rate-limiting or unreliability.
"""
logging.info(f"Querying galaxy: {url}")
retries = 0
query = None
while query is None:
try:
query = session.get(url).json()
except Exception as e:
retries += 1
if retries >= RETRY_COUNT:
logging.error(f"giving up retrying on {url}: {e}")
break
logging.warning(f"retrying call to galaxy: {url}: {e}")
time.sleep(2)
query = None
return query
def main():
args = get_args()
logging.basicConfig(level="INFO", format="%(asctime)s %(levelname)s %(name)s: %(message)s")
session = requests.Session()
# session.mount(GALAXY, HTTPAdapter(max_retries=5))
with open(args.infile) as f:
collections = f.readlines()
collections = [x.strip() for x in collections]
repositories = []
for collection in collections:
if not collection.startswith("#"):
namespace, repository = collection.split(".")
# Galaxy knows about the git repository for a collection and we can find it in the latest_version of a collection
# ex: https://galaxy.ansible.com/api/v2/collections/community/general/
collection = query_galaxy(session, f"{COLLECTIONS_API}/{namespace}/{repository}/")
if collection is None:
logging.error("couldn't get the latest version for {collection}")
continue
# Now query the latest version so we can get the git repo
# ex: https://galaxy.ansible.com/api/v2/collections/community/general/versions/2.2.0/
version = query_galaxy(session, collection["latest_version"]["href"])
if version is None:
logging.error("couldn't get the git repository for {collection}")
continue
repository = version["metadata"]["repository"]
# We might want to exclude organizations or namespaces for repositories we otherwise already know about
ignored = False
for ignored_ns in args.ignore:
if f"/{ignored_ns}/" in repository:
ignored = True
if ignored:
logging.info(f"ignoring {repository}, in ignored namespace")
continue
repositories.append(repository)
print(json.dumps(repositories, indent=2))
if __name__ == "__main__":
main()
[
"https://github.com/ansible-collections/amazon.aws",
"https://github.com/ansible-collections/ansible.netcommon",
"https://github.com/ansible-collections/ansible.posix",
"https://github.com/ansible-collections/ansible.windows",
"https://github.com/ansible-collections/arista.eos",
"https://github.com/ansible/awx",
"https://github.com/ansible-collections/azure",
"https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection",
"https://github.com/chocolatey/chocolatey-ansible",
"https://github.com/CiscoDevNet/ansible-aci",
"https://github.com/ansible-collections/cisco.asa",
"https://github.com/CiscoDevNet/intersight-ansible",
"https://github.com/ansible-collections/cisco.ios",
"https://github.com/ansible-collections/cisco.iosxr",
"https://github.com/CiscoDevNet/ansible-meraki",
"https://github.com/CiscoDevNet/ansible-mso",
"https://github.com/CiscoDevNet/ansible-nso",
"https://github.com/ansible-collections/nxos",
"https://github.com/CiscoDevNet/ansible-ucs",
"https://github.com/cloudscale-ch/ansible-collection-cloudscale",
"https://github.com/ansible-collections/community.aws",
"https://github.com:ansible-collections/community.azure",
"https://github.com/ansible-collections/community.crypto",
"https://github.com/ansible-collections/community.digitalocean",
"https://github.com/ansible-collections/community.docker",
"https://github.com/ansible-collections/community.fortios",
"https://github.com/ansible-collections/community.general",
"https://github.com/ansible-collections/community.google",
"https://github.com/ansible-collections/grafana.git",
"https://github.com/ansible-collections/community.hashi_vault",
"https://github.com/ansible-collections/community.hrobot",
"https://github.com/ansible-collections/community.kubernetes",
"https://github.com/ansible-collections/community.kubevirt",
"https://github.com/ansible-collections/community.libvirt",
"https://github.com/ansible-collections/community.mongodb",
"https://github.com/ansible-collections/community.mysql",
"https://github.com/ansible-collections/community.network",
"https://github.com/ansible-collections/community.okd",
"https://github.com/ansible-collections/community.postgresql",
"https://github.com/ansible-collections/community.proxysql",
"https://github.com/ansible-collections/community.rabbitmq",
"https://github.com/ansible-collections/community.routeros",
"https://github.com/ansible-collections/skydive",
"https://github.com/ansible-collections/community.vmware.git",
"https://github.com/ansible-collections/community.windows",
"https://github.com/ansible-collections/community.zabbix.git",
"https://github.com/containers/ansible-podman-collections.git",
"https://github.com/cyberark/ansible-conjur-collection",
"https://github.com/cyberark/ansible-security-automation-collection",
"https://github.com/ansible-collections/dellemc.os10",
"https://github.com/ansible-collections/dellemc.os6",
"https://github.com/ansible-collections/dellemc.os9",
"https://github.com/F5Networks/f5-ansible",
"https://github.com/fortinet-ansible-dev/ansible-galaxy-fortimanager-collection/tree/galaxy/2.0.1",
"https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/tree/fos_v6.0.0/galaxy_1.1.9",
"https://github.com/ansible-collections/frr.frr",
"https://github.com/gluster/gluster-ansible-collection",
"http://github.com/ansible/ansible_collections_google",
"https://github.com/ansible-collections/hetzner.hcloud",
"https://github.com/ansible-collections/ibm.qradar",
"https://www.github.com/infinidat/ansible-infinidat-collection",
"https://github.com/ansible-collections/junipernetworks.junos",
"https://github.com/ansible-collections/mellanox.onyx",
"https://github.com/ansible-collections/netapp",
"https://github.com/ansible-collections/netapp",
"https://www.github.com/netapp-eseries/santricity",
"https://github.com/ansible-collections/netapp",
"https://github.com/netbox-community/ansible_modules",
"https://github.com/ngine-io/ansible-collection-cloudstack",
"https://github.com/ngine-io/ansible-collection-exoscale",
"https://github.com/ngine-io/ansible-collection-vultr",
"https://opendev.org/openstack/ansible-collections-openstack",
"https://github.com/ansible-collections/openvswitch.openvswitch",
"https://github.com/ovirt/ovirt-ansible-collection",
"https://github.com/Pure-Storage-Ansible/FlashArray-Collection",
"https://github.com/Pure-Storage-Ansible/FlashBlade-Collection",
"https://github.com/ServiceNowITOM/servicenow-ansible",
"https://github.com/ansible-collections/splunk.es",
"https://github.com/theforeman/foreman-ansible-modules",
"https://github.com/ansible-collections/vyos.vyos",
"https://github.com/wtinetworkgear/wti-collection"
]
[
"https://github.com/ansible-collections/amazon.aws",
"https://github.com/ansible-collections/ansible.netcommon",
"https://github.com/ansible-collections/ansible.posix",
"https://github.com/ansible-collections/ansible.windows",
"https://github.com/ansible-collections/arista.eos",
"https://github.com/ansible/awx",
"https://github.com/ansible-collections/azure",
"https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection",
"https://github.com/chocolatey/chocolatey-ansible",
"https://github.com/CiscoDevNet/ansible-aci",
"https://github.com/ansible-collections/cisco.asa",
"https://github.com/CiscoDevNet/intersight-ansible",
"https://github.com/ansible-collections/cisco.ios",
"https://github.com/ansible-collections/cisco.iosxr",
"https://github.com/CiscoDevNet/ansible-meraki",
"https://github.com/CiscoDevNet/ansible-mso",
"https://github.com/CiscoDevNet/ansible-nso",
"https://github.com/ansible-collections/nxos",
"https://github.com/CiscoDevNet/ansible-ucs",
"https://github.com/cloudscale-ch/ansible-collection-cloudscale",
"https://github.com/ansible-collections/community.aws",
"https://github.com:ansible-collections/community.azure",
"https://github.com/ansible-collections/community.crypto",
"https://github.com/ansible-collections/community.digitalocean",
"https://github.com/ansible-collections/community.docker",
"https://github.com/ansible-collections/community.fortios",
"https://github.com/ansible-collections/community.general",
"https://github.com/ansible-collections/community.google",
"https://github.com/ansible-collections/grafana.git",
"https://github.com/ansible-collections/community.hashi_vault",
"https://github.com/ansible-collections/community.hrobot",
"https://github.com/ansible-collections/community.kubernetes",
"https://github.com/ansible-collections/community.kubevirt",
"https://github.com/ansible-collections/community.libvirt",
"https://github.com/ansible-collections/community.mongodb",
"https://github.com/ansible-collections/community.mysql",
"https://github.com/ansible-collections/community.network",
"https://github.com/ansible-collections/community.okd",
"https://github.com/ansible-collections/community.postgresql",
"https://github.com/ansible-collections/community.proxysql",
"https://github.com/ansible-collections/community.rabbitmq",
"https://github.com/ansible-collections/community.routeros",
"https://github.com/ansible-collections/skydive",
"https://github.com/ansible-collections/community.sops",
"https://github.com/ansible-collections/community.vmware.git",
"https://github.com/ansible-collections/community.windows",
"https://github.com/ansible-collections/community.zabbix.git",
"https://github.com/containers/ansible-podman-collections.git",
"https://github.com/cyberark/ansible-conjur-collection",
"https://github.com/cyberark/ansible-security-automation-collection",
"https://github.com/dell/dellemc-openmanage-ansible-modules/tree/collections",
"https://github.com/ansible-collections/dellemc.os10",
"https://github.com/ansible-collections/dellemc.os6",
"https://github.com/ansible-collections/dellemc.os9",
"https://github.com/F5Networks/f5-ansible",
"https://github.com/fortinet-ansible-dev/ansible-galaxy-fortimanager-collection/tree/galaxy/2.0.1",
"https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/tree/fos_v6.0.0/galaxy_1.1.9",
"https://github.com/ansible-collections/frr.frr",
"https://github.com/gluster/gluster-ansible-collection",
"http://github.com/ansible/ansible_collections_google",
"https://github.com/ansible-collections/hetzner.hcloud",
"https://github.com/ansible-collections/ibm.qradar",
"https://www.github.com/infinidat/ansible-infinidat-collection",
"https://github.com/ansible-collections/junipernetworks.junos",
"https://github.com/ansible-collections/mellanox.onyx",
"https://github.com/ansible-collections/netapp",
"https://github.com/ansible-collections/netapp",
"https://www.github.com/netapp-eseries/santricity",
"https://github.com/ansible-collections/netapp",
"https://github.com/netbox-community/ansible_modules",
"https://github.com/ngine-io/ansible-collection-cloudstack",
"https://github.com/ngine-io/ansible-collection-exoscale",
"https://github.com/ngine-io/ansible-collection-vultr",
"https://opendev.org/openstack/ansible-collections-openstack",
"https://github.com/ansible-collections/openvswitch.openvswitch",
"https://github.com/ovirt/ovirt-ansible-collection",
"https://github.com/Pure-Storage-Ansible/FlashArray-Collection",
"https://github.com/Pure-Storage-Ansible/FlashBlade-Collection",
"https://github.com/sensu/sensu-go-ansible",
"https://github.com/ServiceNowITOM/servicenow-ansible",
"https://github.com/ansible-collections/splunk.es",
"https://github.com/theforeman/foreman-ansible-modules",
"https://github.com/T-Systems-MMS/ansible-collection-icinga-director",
"https://github.com/ansible-collections/vyos.vyos",
"https://github.com/wtinetworkgear/wti-collection"
]
@dmsimard
Copy link
Author

I needed to do some manual edits in the ansible-3 list for now:

REPOSITORIES = [
  "https://github.com/ansible-collections/amazon.aws",
  "https://github.com/ansible-collections/ansible.netcommon",
  "https://github.com/ansible-collections/ansible.posix",
  "https://github.com/ansible-collections/ansible.windows",
  "https://github.com/ansible-collections/arista.eos",
  "https://github.com/ansible/awx",
  "https://github.com/ansible-collections/azure",
  "https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection",
  "https://github.com/chocolatey/chocolatey-ansible",
  "https://github.com/CiscoDevNet/ansible-aci",
  "https://github.com/ansible-collections/cisco.asa",
  "https://github.com/CiscoDevNet/intersight-ansible",
  "https://github.com/ansible-collections/cisco.ios",
  "https://github.com/ansible-collections/cisco.iosxr",
  "https://github.com/CiscoDevNet/ansible-meraki",
  "https://github.com/CiscoDevNet/ansible-mso",
  "https://github.com/CiscoDevNet/ansible-nso",
  "https://github.com/ansible-collections/nxos",
  "https://github.com/CiscoDevNet/ansible-ucs",
  "https://github.com/cloudscale-ch/ansible-collection-cloudscale",
  "https://github.com/ansible-collections/community.aws",
  "https://github.com/ansible-collections/community.azure",
  "https://github.com/ansible-collections/community.crypto",
  "https://github.com/ansible-collections/community.digitalocean",
  "https://github.com/ansible-collections/community.docker",
  "https://github.com/ansible-collections/community.fortios",
  "https://github.com/ansible-collections/community.general",
  "https://github.com/ansible-collections/community.google",
#  "https://github.com/ansible-collections/grafana.git", TODO
  "https://github.com/ansible-collections/grafana",
  "https://github.com/ansible-collections/community.hashi_vault",
  "https://github.com/ansible-collections/community.hrobot",
  "https://github.com/ansible-collections/community.kubernetes",
  "https://github.com/ansible-collections/community.kubevirt",
  "https://github.com/ansible-collections/community.libvirt",
  "https://github.com/ansible-collections/community.mongodb",
  "https://github.com/ansible-collections/community.mysql",
  "https://github.com/ansible-collections/community.network",
  "https://github.com/ansible-collections/community.okd",
  "https://github.com/ansible-collections/community.postgresql",
  "https://github.com/ansible-collections/community.proxysql",
  "https://github.com/ansible-collections/community.rabbitmq",
  "https://github.com/ansible-collections/community.routeros",
  "https://github.com/ansible-collections/skydive",
  "https://github.com/ansible-collections/community.sops",
#  "https://github.com/ansible-collections/community.vmware.git", TODO
  "https://github.com/ansible-collections/community.vmware",
  "https://github.com/ansible-collections/community.windows",
#  "https://github.com/ansible-collections/community.zabbix.git", TODO
  "https://github.com/ansible-collections/community.zabbix",
#  "https://github.com/containers/ansible-podman-collections.git", TODO
  "https://github.com/containers/ansible-podman-collections",
  "https://github.com/cyberark/ansible-conjur-collection",
  "https://github.com/cyberark/ansible-security-automation-collection",
#  "https://github.com/dell/dellemc-openmanage-ansible-modules/tree/collections", TODO
  "https://github.com/dell/dellemc-openmanage-ansible-modules",
  "https://github.com/ansible-collections/dellemc.os10",
  "https://github.com/ansible-collections/dellemc.os6",
  "https://github.com/ansible-collections/dellemc.os9",
  "https://github.com/F5Networks/f5-ansible",
#  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortimanager-collection/tree/galaxy/2.0.1", TODO
  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortimanager-collection",
#  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/tree/fos_v6.0.0/galaxy_1.1.9", TODO
  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection",
  "https://github.com/ansible-collections/frr.frr",
  "https://github.com/gluster/gluster-ansible-collection",
# https://github.com/ansible-collections/google.cloud/pull/387
#  "http://github.com/ansible/ansible_collections_google",
  "https://github.com/ansible-collections/google.cloud",
  "https://github.com/ansible-collections/hetzner.hcloud",
  "https://github.com/ansible-collections/ibm.qradar",
  "https://github.com/infinidat/ansible-infinidat-collection",
  "https://github.com/ansible-collections/junipernetworks.junos",
  "https://github.com/ansible-collections/mellanox.onyx",
  "https://github.com/ansible-collections/netapp",
  "https://github.com/ansible-collections/netapp",
  "https://github.com/netapp-eseries/santricity",
  "https://github.com/ansible-collections/netapp",
  "https://github.com/netbox-community/ansible_modules",
  "https://github.com/ngine-io/ansible-collection-cloudstack",
  "https://github.com/ngine-io/ansible-collection-exoscale",
  "https://github.com/ngine-io/ansible-collection-vultr",
#  "https://opendev.org/openstack/ansible-collections-openstack", # gitea: https://github.com/go-gitea/gitea/issues/569
  "https://github.com/openstack/ansible-collections-openstack",
  "https://github.com/ansible-collections/openvswitch.openvswitch",
  "https://github.com/ovirt/ovirt-ansible-collection",
  "https://github.com/Pure-Storage-Ansible/FlashArray-Collection",
  "https://github.com/Pure-Storage-Ansible/FlashBlade-Collection",
  "https://github.com/sensu/sensu-go-ansible",
  "https://github.com/ServiceNowITOM/servicenow-ansible",
  "https://github.com/ansible-collections/splunk.es",
  "https://github.com/theforeman/foreman-ansible-modules",
  "https://github.com/T-Systems-MMS/ansible-collection-icinga-director",
  "https://github.com/ansible-collections/vyos.vyos",
  "https://github.com/wtinetworkgear/wti-collection"
]

@dmsimard
Copy link
Author

Update from ansible 6.0.0a3:

/tools/collection-repos.py --infile 6/ansible.in 
2022-05-18 20:10:00,692 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/amazon/aws/
2022-05-18 20:10:00,869 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/amazon/aws/versions/3.2.0/
2022-05-18 20:10:00,971 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/netcommon/
2022-05-18 20:10:01,068 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/netcommon/versions/3.0.0/
2022-05-18 20:10:01,152 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/posix/
2022-05-18 20:10:01,220 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/posix/versions/1.3.0/
2022-05-18 20:10:01,288 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/utils/
2022-05-18 20:10:01,348 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/utils/versions/2.6.1/
2022-05-18 20:10:01,474 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/windows/
2022-05-18 20:10:01,533 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ansible/windows/versions/1.10.0/
2022-05-18 20:10:01,598 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/arista/eos/
2022-05-18 20:10:01,666 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/arista/eos/versions/5.0.0/
2022-05-18 20:10:01,741 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/awx/awx/
2022-05-18 20:10:01,805 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/awx/awx/versions/21.0.0/
2022-05-18 20:10:01,876 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/azure/azcollection/
2022-05-18 20:10:01,947 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/azure/azcollection/versions/1.12.0/
2022-05-18 20:10:02,016 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/check_point/mgmt/
2022-05-18 20:10:02,083 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/check_point/mgmt/versions/2.3.0/
2022-05-18 20:10:02,154 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/chocolatey/chocolatey/
2022-05-18 20:10:02,225 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/chocolatey/chocolatey/versions/1.2.0/
2022-05-18 20:10:02,293 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/aci/
2022-05-18 20:10:02,386 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/aci/versions/2.2.0/
2022-05-18 20:10:02,465 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/asa/
2022-05-18 20:10:02,528 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/asa/versions/3.0.0/
2022-05-18 20:10:02,615 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/intersight/
2022-05-18 20:10:02,685 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/intersight/versions/1.0.18/
2022-05-18 20:10:02,768 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ios/
2022-05-18 20:10:02,840 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ios/versions/3.0.0/
2022-05-18 20:10:03,059 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/iosxr/
2022-05-18 20:10:03,165 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/iosxr/versions/3.0.0/
2022-05-18 20:10:03,235 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ise/
2022-05-18 20:10:03,294 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ise/versions/2.4.0/
2022-05-18 20:10:03,372 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/meraki/
2022-05-18 20:10:03,446 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/meraki/versions/2.6.2/
2022-05-18 20:10:03,528 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/mso/
2022-05-18 20:10:03,587 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/mso/versions/2.0.0/
2022-05-18 20:10:03,674 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/nso/
2022-05-18 20:10:03,726 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/nso/versions/1.0.3/
2022-05-18 20:10:03,797 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/nxos/
2022-05-18 20:10:03,981 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/nxos/versions/3.0.0/
2022-05-18 20:10:04,049 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ucs/
2022-05-18 20:10:04,115 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cisco/ucs/versions/1.8.0/
2022-05-18 20:10:04,195 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cloud/common/
2022-05-18 20:10:04,252 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cloud/common/versions/2.1.1/
2022-05-18 20:10:04,319 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cloudscale_ch/cloud/
2022-05-18 20:10:04,383 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cloudscale_ch/cloud/versions/2.2.1/
2022-05-18 20:10:04,444 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/aws/
2022-05-18 20:10:05,005 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/aws/versions/3.2.1/
2022-05-18 20:10:05,071 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/azure/
2022-05-18 20:10:05,144 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/azure/versions/1.1.0/
2022-05-18 20:10:05,415 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/ciscosmb/
2022-05-18 20:10:05,481 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/ciscosmb/versions/1.0.5/
2022-05-18 20:10:05,543 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/crypto/
2022-05-18 20:10:05,605 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/crypto/versions/2.3.1/
2022-05-18 20:10:08,077 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/digitalocean/
2022-05-18 20:10:08,135 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/digitalocean/versions/1.19.0/
2022-05-18 20:10:08,199 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/dns/
2022-05-18 20:10:08,384 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/dns/versions/2.1.1/
2022-05-18 20:10:08,448 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/docker/
2022-05-18 20:10:08,506 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/docker/versions/2.5.1/
2022-05-18 20:10:08,567 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/fortios/
2022-05-18 20:10:08,631 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/fortios/versions/1.0.0/
2022-05-18 20:10:08,697 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/general/
2022-05-18 20:10:08,786 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/general/versions/5.0.0/
2022-05-18 20:10:08,858 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/google/
2022-05-18 20:10:08,922 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/google/versions/1.0.0/
2022-05-18 20:10:09,000 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/grafana/
2022-05-18 20:10:09,065 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/grafana/versions/1.4.0/
2022-05-18 20:10:09,139 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/hashi_vault/
2022-05-18 20:10:09,226 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/hashi_vault/versions/2.5.0/
2022-05-18 20:10:09,408 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/hrobot/
2022-05-18 20:10:09,470 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/hrobot/versions/1.3.0/
2022-05-18 20:10:09,534 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/libvirt/
2022-05-18 20:10:09,606 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/libvirt/versions/1.1.0/
2022-05-18 20:10:09,711 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/mongodb/
2022-05-18 20:10:09,780 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/mongodb/versions/1.4.0/
2022-05-18 20:10:09,846 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/mysql/
2022-05-18 20:10:09,905 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/mysql/versions/3.2.1/
2022-05-18 20:10:10,125 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/network/
2022-05-18 20:10:10,188 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/network/versions/3.3.0/
2022-05-18 20:10:10,255 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/okd/
2022-05-18 20:10:10,357 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/okd/versions/2.2.0/
2022-05-18 20:10:10,439 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/postgresql/
2022-05-18 20:10:10,498 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/postgresql/versions/2.1.5/
2022-05-18 20:10:10,579 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/proxysql/
2022-05-18 20:10:10,651 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/proxysql/versions/1.3.2/
2022-05-18 20:10:10,715 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/rabbitmq/
2022-05-18 20:10:10,874 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/rabbitmq/versions/1.2.1/
2022-05-18 20:10:10,939 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/routeros/
2022-05-18 20:10:11,008 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/routeros/versions/2.0.0/
2022-05-18 20:10:11,153 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/sap/
2022-05-18 20:10:11,209 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/sap/versions/1.0.0/
2022-05-18 20:10:11,363 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/skydive/
2022-05-18 20:10:11,428 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/skydive/versions/1.0.0/
2022-05-18 20:10:11,495 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/sops/
2022-05-18 20:10:11,556 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/sops/versions/1.2.1/
2022-05-18 20:10:11,620 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/vmware/
2022-05-18 20:10:11,686 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/vmware/versions/2.4.0/
2022-05-18 20:10:11,765 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/windows/
2022-05-18 20:10:11,826 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/windows/versions/1.10.0/
2022-05-18 20:10:11,889 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/zabbix/
2022-05-18 20:10:11,964 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/community/zabbix/versions/1.6.0/
2022-05-18 20:10:12,026 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/containers/podman/
2022-05-18 20:10:12,085 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/containers/podman/versions/1.9.3/
2022-05-18 20:10:12,164 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cyberark/conjur/
2022-05-18 20:10:12,224 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cyberark/conjur/versions/1.1.0/
2022-05-18 20:10:12,301 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cyberark/pas/
2022-05-18 20:10:12,379 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/cyberark/pas/versions/1.0.13/
2022-05-18 20:10:12,444 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/enterprise_sonic/
2022-05-18 20:10:12,554 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/enterprise_sonic/versions/1.1.0/
2022-05-18 20:10:12,620 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/openmanage/
2022-05-18 20:10:12,690 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/openmanage/versions/5.3.0/
2022-05-18 20:10:12,773 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os10/
2022-05-18 20:10:12,849 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os10/versions/1.1.1/
2022-05-18 20:10:12,918 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os6/
2022-05-18 20:10:12,984 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os6/versions/1.0.7/
2022-05-18 20:10:13,198 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os9/
2022-05-18 20:10:13,263 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/dellemc/os9/versions/1.0.4/
2022-05-18 20:10:13,402 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/f5networks/f5_modules/
2022-05-18 20:10:13,462 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/f5networks/f5_modules/versions/1.16.0/
2022-05-18 20:10:13,529 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/fortinet/fortimanager/
2022-05-18 20:10:13,710 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/fortinet/fortimanager/versions/2.1.5/
2022-05-18 20:10:13,788 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/fortinet/fortios/
2022-05-18 20:10:14,052 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/fortinet/fortios/versions/2.1.5/
2022-05-18 20:10:14,124 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/frr/frr/
2022-05-18 20:10:14,193 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/frr/frr/versions/2.0.0/
2022-05-18 20:10:14,270 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/gluster/gluster/
2022-05-18 20:10:14,372 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/gluster/gluster/versions/1.0.2/
2022-05-18 20:10:14,437 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/google/cloud/
2022-05-18 20:10:14,631 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/google/cloud/versions/1.0.2/
2022-05-18 20:10:15,143 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/hetzner/hcloud/
2022-05-18 20:10:15,255 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/hetzner/hcloud/versions/1.6.0/
2022-05-18 20:10:15,352 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/hpe/nimble/
2022-05-18 20:10:15,469 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/hpe/nimble/versions/1.1.4/
2022-05-18 20:10:15,535 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ibm/qradar/
2022-05-18 20:10:15,596 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ibm/qradar/versions/2.0.0/
2022-05-18 20:10:16,680 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/infinidat/infinibox/
2022-05-18 20:10:16,748 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/infinidat/infinibox/versions/1.3.3/
2022-05-18 20:10:16,879 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/infoblox/nios_modules/
2022-05-18 20:10:16,976 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/infoblox/nios_modules/versions/1.2.1/
2022-05-18 20:10:17,091 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/inspur/sm/
2022-05-18 20:10:17,174 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/inspur/sm/versions/2.0.0/
2022-05-18 20:10:17,255 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/junipernetworks/junos/
2022-05-18 20:10:17,321 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/junipernetworks/junos/versions/3.0.0/
2022-05-18 20:10:17,391 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/kubernetes/core/
2022-05-18 20:10:17,487 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/kubernetes/core/versions/2.3.1/
2022-05-18 20:10:17,591 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/mellanox/onyx/
2022-05-18 20:10:17,774 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/mellanox/onyx/versions/1.0.0/
2022-05-18 20:10:18,010 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/aws/
2022-05-18 20:10:18,215 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/aws/versions/21.7.0/
2022-05-18 20:10:18,285 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/azure/
2022-05-18 20:10:18,366 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/azure/versions/21.10.0/
2022-05-18 20:10:18,434 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/cloudmanager/
2022-05-18 20:10:18,496 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/cloudmanager/versions/21.17.0/
2022-05-18 20:10:18,578 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/elementsw/
2022-05-18 20:10:18,674 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/elementsw/versions/21.7.0/
2022-05-18 20:10:18,767 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp_eseries/santricity/
2022-05-18 20:10:18,830 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp_eseries/santricity/versions/1.3.0/
2022-05-18 20:10:19,034 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/ontap/
2022-05-18 20:10:19,107 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/ontap/versions/21.19.1/
2022-05-18 20:10:19,183 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/storagegrid/
2022-05-18 20:10:19,268 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/storagegrid/versions/21.10.0/
2022-05-18 20:10:19,382 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/um_info/
2022-05-18 20:10:19,649 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netapp/um_info/versions/21.8.0/
2022-05-18 20:10:19,753 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netbox/netbox/
2022-05-18 20:10:19,850 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/netbox/netbox/versions/3.7.1/
2022-05-18 20:10:19,911 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/cloudstack/
2022-05-18 20:10:20,366 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/cloudstack/versions/2.2.3/
2022-05-18 20:10:20,471 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/exoscale/
2022-05-18 20:10:20,530 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/exoscale/versions/1.0.0/
2022-05-18 20:10:20,592 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/vultr/
2022-05-18 20:10:20,654 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ngine_io/vultr/versions/1.1.1/
2022-05-18 20:10:20,719 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/openstack/cloud/
2022-05-18 20:10:20,810 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/openstack/cloud/versions/1.8.0/
2022-05-18 20:10:21,168 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/openvswitch/openvswitch/
2022-05-18 20:10:21,269 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/openvswitch/openvswitch/versions/2.1.0/
2022-05-18 20:10:21,334 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ovirt/ovirt/
2022-05-18 20:10:21,597 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/ovirt/ovirt/versions/2.0.3/
2022-05-18 20:10:21,685 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/purestorage/flasharray/
2022-05-18 20:10:21,746 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/purestorage/flasharray/versions/1.13.0/
2022-05-18 20:10:22,111 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/purestorage/flashblade/
2022-05-18 20:10:22,187 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/purestorage/flashblade/versions/1.9.0/
2022-05-18 20:10:22,263 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/sensu/sensu_go/
2022-05-18 20:10:22,331 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/sensu/sensu_go/versions/1.13.1/
2022-05-18 20:10:22,405 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/servicenow/servicenow/
2022-05-18 20:10:22,484 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/servicenow/servicenow/versions/1.0.6/
2022-05-18 20:10:22,554 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/splunk/es/
2022-05-18 20:10:22,665 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/splunk/es/versions/2.0.0/
2022-05-18 20:10:22,728 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/theforeman/foreman/
2022-05-18 20:10:22,788 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/theforeman/foreman/versions/3.4.0/
2022-05-18 20:10:22,937 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/t_systems_mms/icinga_director/
2022-05-18 20:10:23,007 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/t_systems_mms/icinga_director/versions/1.29.0/
2022-05-18 20:10:23,078 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/vmware/vmware_rest/
2022-05-18 20:10:23,137 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/vmware/vmware_rest/versions/2.1.5/
2022-05-18 20:10:23,204 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/vyos/vyos/
2022-05-18 20:10:23,278 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/vyos/vyos/versions/3.0.0/
2022-05-18 20:10:23,347 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/wti/remote/
2022-05-18 20:10:23,407 INFO root: Querying galaxy: https://galaxy.ansible.com/api/v2/collections/wti/remote/versions/1.0.3/
[
  "https://github.com/ansible-collections/amazon.aws",
  "https://github.com/ansible-collections/ansible.netcommon",
  "https://github.com/ansible-collections/ansible.posix",
  "https://github.com/ansible-collections/ansible.utils",
  "https://github.com/ansible-collections/ansible.windows",
  "https://github.com/ansible-collections/arista.eos",
  "https://github.com/ansible/awx",
  "https://github.com/ansible-collections/azure",
  "https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection",
  "https://github.com/chocolatey/chocolatey-ansible",
  "https://github.com/CiscoDevNet/ansible-aci",
  "https://github.com/ansible-collections/cisco.asa",
  "https://github.com/CiscoDevNet/intersight-ansible",
  "https://github.com/ansible-collections/cisco.ios",
  "https://github.com/ansible-collections/cisco.iosxr",
  "https://github.com/CiscoISE/ansible-ise",
  "https://github.com/CiscoDevNet/ansible-meraki",
  "https://github.com/CiscoDevNet/ansible-mso",
  "https://github.com/CiscoDevNet/ansible-nso",
  "https://github.com/ansible-collections/cisco.nxos",
  "https://github.com/CiscoDevNet/ansible-ucs",
  "https://github.com/ansible-collections/cloud.common",
  "https://github.com/cloudscale-ch/ansible-collection-cloudscale",
  "https://github.com/ansible-collections/community.aws",
  "https://github.com/ansible-collections/community.azure",
  "https://github.com/ansible-collections/community.ciscosmb",
  "https://github.com/ansible-collections/community.crypto",
  "https://github.com/ansible-collections/community.digitalocean",
  "https://github.com/ansible-collections/community.dns",
  "https://github.com/ansible-collections/community.docker",
  "https://github.com/ansible-collections/community.fortios",
  "https://github.com/ansible-collections/community.general",
  "https://github.com/ansible-collections/community.google",
  "https://github.com/ansible-collections/grafana.git",
  "https://github.com/ansible-collections/community.hashi_vault",
  "https://github.com/ansible-collections/community.hrobot",
  "https://github.com/ansible-collections/community.libvirt",
  "https://github.com/ansible-collections/community.mongodb",
  "https://github.com/ansible-collections/community.mysql",
  "https://github.com/ansible-collections/community.network",
  "https://github.com/openshift/community.okd",
  "https://github.com/ansible-collections/community.postgresql",
  "https://github.com/ansible-collections/community.proxysql",
  "https://github.com/ansible-collections/community.rabbitmq",
  "https://github.com/ansible-collections/community.routeros",
  "https://github.com/ansible-collections/community.sap",
  "https://github.com/ansible-collections/skydive",
  "https://github.com/ansible-collections/community.sops",
  "https://github.com/ansible-collections/community.vmware.git",
  "https://github.com/ansible-collections/community.windows",
  "https://github.com/ansible-collections/community.zabbix.git",
  "https://github.com/containers/ansible-podman-collections.git",
  "https://github.com/cyberark/ansible-conjur-collection",
  "https://github.com/cyberark/ansible-security-automation-collection",
  "https://github.com/ansible-collections/dellemc.enterprise_sonic",
  "https://github.com/dell/dellemc-openmanage-ansible-modules/tree/collections",
  "https://github.com/ansible-collections/dellemc.os10",
  "https://github.com/ansible-collections/dellemc.os6",
  "https://github.com/ansible-collections/dellemc.os9",
  "https://github.com/F5Networks/f5-ansible",
  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortimanager-collection/tree/galaxy/2.1.5",
  "https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/tree/fos_v6.0.0/galaxy_2.1.5",
  "https://github.com/ansible-collections/frr.frr",
  "https://github.com/gluster/gluster-ansible-collection",
  "http://github.com/ansible/ansible_collections_google",
  "https://github.com/ansible-collections/hetzner.hcloud",
  "https://github.com/hpe-storage/nimble-ansible-modules",
  "https://github.com/ansible-collections/ibm.qradar",
  "https://www.github.com/infinidat/ansible-infinidat-collection",
  "https://github.com/infobloxopen/infoblox-ansible",
  "https://github.com/ISIB-Group/inspur.sm",
  "https://github.com/ansible-collections/junipernetworks.junos",
  "https://github.com/ansible-collections/kubernetes.core",
  "https://github.com/ansible-collections/mellanox.onyx",
  "https://github.com/ansible-collections/netapp.aws",
  "https://github.com/ansible-collections/netapp.azure",
  "https://github.com/ansible-collections/netapp.cloudmanager",
  "https://github.com/ansible-collections/netapp.elementsw",
  "https://www.github.com/netapp-eseries/santricity",
  "https://github.com/ansible-collections/netapp.ontap",
  "https://github.com/ansible-collections/netapp.storagegrid",
  "https://github.com/ansible-collections/netapp.um_info",
  "https://github.com/netbox-community/ansible_modules",
  "https://github.com/ngine-io/ansible-collection-cloudstack",
  "https://github.com/ngine-io/ansible-collection-exoscale",
  "https://github.com/ngine-io/ansible-collection-vultr",
  "https://opendev.org/openstack/ansible-collections-openstack",
  "https://github.com/ansible-collections/openvswitch.openvswitch",
  "https://github.com/ovirt/ovirt-ansible-collection",
  "https://github.com/Pure-Storage-Ansible/FlashArray-Collection",
  "https://github.com/Pure-Storage-Ansible/FlashBlade-Collection",
  "https://github.com/sensu/sensu-go-ansible",
  "https://github.com/ServiceNowITOM/servicenow-ansible",
  "https://github.com/ansible-collections/splunk.es",
  "https://github.com/theforeman/foreman-ansible-modules",
  "https://github.com/T-Systems-MMS/ansible-collection-icinga-director",
  "https://github.com/ansible-collections/vmware.vmware_rest.git",
  "https://github.com/ansible-collections/vyos.vyos",
  "https://github.com/wtinetworkgear/wti-collection"
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment