├── 3 ├── CHANGELOG-v3.rst ├── ancestor.deps ├── ansible-3.0.0.deps ├── ansible-3.0.0b1.deps ├── ansible-3.0.0rc1.deps ├── ansible-3.1.0.deps ├── ansible-3.2.0.deps ├── ansible-3.3.0.deps ├── ansible-3.4.0.deps ├── ansible-3.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml └── porting_guide_3.rst ├── 4 ├── CHANGELOG-v4.rst ├── ancestor.deps ├── ansible-4.0.0.deps ├── ansible-4.0.0a1.deps ├── ansible-4.0.0a2.deps ├── ansible-4.0.0a3.deps ├── ansible-4.0.0a4.deps ├── ansible-4.0.0b1.deps ├── ansible-4.0.0b2.deps ├── ansible-4.0.0rc1.deps ├── ansible-4.1.0.deps ├── ansible-4.10.0.deps ├── ansible-4.2.0.deps ├── ansible-4.3.0.deps ├── ansible-4.4.0.deps ├── ansible-4.5.0.deps ├── ansible-4.6.0.deps ├── ansible-4.7.0.deps ├── ansible-4.8.0.deps ├── ansible-4.9.0.deps ├── ansible-4.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml └── porting_guide_4.rst ├── 5 ├── CHANGELOG-v5.rst ├── ancestor.deps ├── ansible-5.0.0.deps ├── ansible-5.0.0a1.deps ├── ansible-5.0.0a2.deps ├── ansible-5.0.0a3.deps ├── ansible-5.0.0b1.deps ├── ansible-5.0.0b2.deps ├── ansible-5.0.0rc1.deps ├── ansible-5.0.1.deps ├── ansible-5.1.0.deps ├── ansible-5.10.0.deps ├── ansible-5.10.0.yaml ├── ansible-5.2.0.deps ├── ansible-5.3.0.deps ├── ansible-5.4.0.deps ├── ansible-5.5.0.deps ├── ansible-5.6.0.deps ├── ansible-5.7.0.deps ├── ansible-5.7.1.deps ├── ansible-5.8.0.deps ├── ansible-5.8.0.yaml ├── ansible-5.9.0.deps ├── ansible-5.9.0.yaml ├── ansible-5.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml └── porting_guide_5.rst ├── 6 ├── CHANGELOG-v6.rst ├── ancestor.deps ├── ansible-6.0.0.deps ├── ansible-6.0.0.yaml ├── ansible-6.0.0a1.deps ├── ansible-6.0.0a2.deps ├── ansible-6.0.0a2.yaml ├── ansible-6.0.0a3.deps ├── ansible-6.0.0a3.yaml ├── ansible-6.0.0b1.deps ├── ansible-6.0.0b1.yaml ├── ansible-6.0.0b2.deps ├── ansible-6.0.0b2.yaml ├── ansible-6.0.0rc1.deps ├── ansible-6.0.0rc1.yaml ├── ansible-6.1.0.deps ├── ansible-6.1.0.yaml ├── ansible-6.2.0.deps ├── ansible-6.2.0.yaml ├── ansible-6.3.0.deps ├── ansible-6.3.0.yaml ├── ansible-6.4.0.deps ├── ansible-6.4.0.yaml ├── ansible-6.5.0.deps ├── ansible-6.5.0.yaml ├── ansible-6.6.0.deps ├── ansible-6.6.0.yaml ├── ansible-6.7.0.deps ├── ansible-6.7.0.yaml ├── ansible-6.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml └── porting_guide_6.rst ├── 7 ├── CHANGELOG-v7.rst ├── ancestor.deps ├── ansible-7.0.0.deps ├── ansible-7.0.0.yaml ├── ansible-7.0.0a1.deps ├── ansible-7.0.0a1.yaml ├── ansible-7.0.0a2.deps ├── ansible-7.0.0a2.yaml ├── ansible-7.0.0b1.deps ├── ansible-7.0.0b1.yaml ├── ansible-7.0.0rc1.deps ├── ansible-7.0.0rc1.yaml ├── ansible-7.1.0.deps ├── ansible-7.1.0.yaml ├── ansible-7.2.0-tags.yaml ├── ansible-7.2.0.deps ├── ansible-7.2.0.yaml ├── ansible-7.3.0-tags.yaml ├── ansible-7.3.0.deps ├── ansible-7.3.0.yaml ├── ansible-7.4.0-tags.yaml ├── ansible-7.4.0.deps ├── ansible-7.4.0.yaml ├── ansible-7.5.0-tags.yaml ├── ansible-7.5.0.deps ├── ansible-7.5.0.yaml ├── ansible-7.6.0-tags.yaml ├── ansible-7.6.0.deps ├── ansible-7.6.0.yaml ├── ansible-7.7.0-tags.yaml ├── ansible-7.7.0.deps ├── ansible-7.7.0.yaml ├── ansible-7.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_7.rst └── validate-tags-ignores ├── 8 ├── CHANGELOG-v8.rst ├── ancestor.deps ├── ansible-8.0.0-tags.yaml ├── ansible-8.0.0.deps ├── ansible-8.0.0.yaml ├── ansible-8.0.0a1-tags.yaml ├── ansible-8.0.0a1.deps ├── ansible-8.0.0a1.yaml ├── ansible-8.0.0a2-tags.yaml ├── ansible-8.0.0a2.deps ├── ansible-8.0.0a2.yaml ├── ansible-8.0.0a3-tags.yaml ├── ansible-8.0.0a3.deps ├── ansible-8.0.0a3.yaml ├── ansible-8.0.0b1-tags.yaml ├── ansible-8.0.0b1.deps ├── ansible-8.0.0b1.yaml ├── ansible-8.0.0rc1-tags.yaml ├── ansible-8.0.0rc1.deps ├── ansible-8.0.0rc1.yaml ├── ansible-8.1.0-tags.yaml ├── ansible-8.1.0.deps ├── ansible-8.1.0.yaml ├── ansible-8.2.0-tags.yaml ├── ansible-8.2.0.deps ├── ansible-8.2.0.yaml ├── ansible-8.3.0-tags.yaml ├── ansible-8.3.0.deps ├── ansible-8.3.0.yaml ├── ansible-8.4.0-tags.yaml ├── ansible-8.4.0.deps ├── ansible-8.4.0.yaml ├── ansible-8.5.0-tags.yaml ├── ansible-8.5.0.deps ├── ansible-8.5.0.yaml ├── ansible-8.6.0-tags.yaml ├── ansible-8.6.0.deps ├── ansible-8.6.0.yaml ├── ansible-8.6.1-tags.yaml ├── ansible-8.6.1.deps ├── ansible-8.6.1.yaml ├── ansible-8.7.0-tags.yaml ├── ansible-8.7.0.deps ├── ansible-8.7.0.yaml ├── ansible-8.build ├── ansible-8.constraints ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_8.rst └── validate-tags-ignores ├── 9 ├── CHANGELOG-v9.md ├── CHANGELOG-v9.rst ├── ancestor.deps ├── ansible-9.0.0-tags.yaml ├── ansible-9.0.0.deps ├── ansible-9.0.0.yaml ├── ansible-9.0.0a1-tags.yaml ├── ansible-9.0.0a1.deps ├── ansible-9.0.0a1.yaml ├── ansible-9.0.0a2-tags.yaml ├── ansible-9.0.0a2.deps ├── ansible-9.0.0a2.yaml ├── ansible-9.0.0a3-tags.yaml ├── ansible-9.0.0a3.deps ├── ansible-9.0.0a3.yaml ├── ansible-9.0.0b1-tags.yaml ├── ansible-9.0.0b1.deps ├── ansible-9.0.0b1.yaml ├── ansible-9.0.0rc1-tags.yaml ├── ansible-9.0.0rc1.deps ├── ansible-9.0.0rc1.yaml ├── ansible-9.0.1-tags.yaml ├── ansible-9.0.1.deps ├── ansible-9.0.1.yaml ├── ansible-9.1.0-tags.yaml ├── ansible-9.1.0.deps ├── ansible-9.1.0.yaml ├── ansible-9.10.0-tags.yaml ├── ansible-9.10.0.deps ├── ansible-9.10.0.yaml ├── ansible-9.11.0-tags.yaml ├── ansible-9.11.0.deps ├── ansible-9.11.0.yaml ├── ansible-9.12.0-tags.yaml ├── ansible-9.12.0.deps ├── ansible-9.12.0.yaml ├── ansible-9.13.0-tags.yaml ├── ansible-9.13.0.deps ├── ansible-9.13.0.yaml ├── ansible-9.2.0-tags.yaml ├── ansible-9.2.0.deps ├── ansible-9.2.0.yaml ├── ansible-9.3.0-tags.yaml ├── ansible-9.3.0.deps ├── ansible-9.3.0.yaml ├── ansible-9.4.0-tags.yaml ├── ansible-9.4.0.deps ├── ansible-9.4.0.yaml ├── ansible-9.5.1-tags.yaml ├── ansible-9.5.1.deps ├── ansible-9.5.1.yaml ├── ansible-9.6.0-tags.yaml ├── ansible-9.6.0.deps ├── ansible-9.6.0.yaml ├── ansible-9.6.1-tags.yaml ├── ansible-9.6.1.deps ├── ansible-9.6.1.yaml ├── ansible-9.7.0-tags.yaml ├── ansible-9.7.0.deps ├── ansible-9.7.0.yaml ├── ansible-9.8.0-tags.yaml ├── ansible-9.8.0.deps ├── ansible-9.8.0.yaml ├── ansible-9.9.0-tags.yaml ├── ansible-9.9.0.deps ├── ansible-9.9.0.yaml ├── ansible-9.build ├── ansible-9.constraints ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_9.rst └── validate-tags-ignores ├── 10 ├── CHANGELOG-v10.md ├── CHANGELOG-v10.rst ├── ancestor.deps ├── ansible-10.0.0-tags.yaml ├── ansible-10.0.0.deps ├── ansible-10.0.0.yaml ├── ansible-10.0.0a1-tags.yaml ├── ansible-10.0.0a1.deps ├── ansible-10.0.0a1.yaml ├── ansible-10.0.0a2-tags.yaml ├── ansible-10.0.0a2.deps ├── ansible-10.0.0a2.yaml ├── ansible-10.0.0a3-tags.yaml ├── ansible-10.0.0a3.deps ├── ansible-10.0.0a3.yaml ├── ansible-10.0.0b1-tags.yaml ├── ansible-10.0.0b1.deps ├── ansible-10.0.0b1.yaml ├── ansible-10.0.0rc1-tags.yaml ├── ansible-10.0.0rc1.deps ├── ansible-10.0.0rc1.yaml ├── ansible-10.0.1-tags.yaml ├── ansible-10.0.1.deps ├── ansible-10.0.1.yaml ├── ansible-10.1.0-tags.yaml ├── ansible-10.1.0.deps ├── ansible-10.1.0.yaml ├── ansible-10.2.0-tags.yaml ├── ansible-10.2.0.deps ├── ansible-10.2.0.yaml ├── ansible-10.3.0-tags.yaml ├── ansible-10.3.0.deps ├── ansible-10.3.0.yaml ├── ansible-10.4.0-tags.yaml ├── ansible-10.4.0.deps ├── ansible-10.4.0.yaml ├── ansible-10.5.0-tags.yaml ├── ansible-10.5.0.deps ├── ansible-10.5.0.yaml ├── ansible-10.6.0-tags.yaml ├── ansible-10.6.0.deps ├── ansible-10.6.0.yaml ├── ansible-10.7.0-tags.yaml ├── ansible-10.7.0.deps ├── ansible-10.7.0.yaml ├── ansible-10.build ├── ansible-10.constraints ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_10.rst └── validate-tags-ignores ├── 11 ├── CHANGELOG-v11.md ├── CHANGELOG-v11.rst ├── ancestor.deps ├── ansible-11.0.0-tags.yaml ├── ansible-11.0.0.deps ├── ansible-11.0.0.yaml ├── ansible-11.0.0a1-tags.yaml ├── ansible-11.0.0a1.deps ├── ansible-11.0.0a1.yaml ├── ansible-11.0.0a2-tags.yaml ├── ansible-11.0.0a2.deps ├── ansible-11.0.0a2.yaml ├── ansible-11.0.0b1-tags.yaml ├── ansible-11.0.0b1.deps ├── ansible-11.0.0b1.yaml ├── ansible-11.0.0b2-tags.yaml ├── ansible-11.0.0b2.deps ├── ansible-11.0.0b2.yaml ├── ansible-11.0.0rc1-tags.yaml ├── ansible-11.0.0rc1.deps ├── ansible-11.0.0rc1.yaml ├── ansible-11.1.0-tags.yaml ├── ansible-11.1.0.deps ├── ansible-11.1.0.yaml ├── ansible-11.2.0-tags.yaml ├── ansible-11.2.0.deps ├── ansible-11.2.0.yaml ├── ansible-11.3.0-tags.yaml ├── ansible-11.3.0.deps ├── ansible-11.3.0.yaml ├── ansible-11.4.0-tags.yaml ├── ansible-11.4.0.deps ├── ansible-11.4.0.yaml ├── ansible-11.5.0-tags.yaml ├── ansible-11.5.0.deps ├── ansible-11.5.0.yaml ├── ansible-11.6.0-tags.yaml ├── ansible-11.6.0.deps ├── ansible-11.6.0.yaml ├── ansible-11.build ├── ansible-11.constraints ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_11.rst └── validate-tags-ignores ├── 12 ├── CHANGELOG-v12.md ├── CHANGELOG-v12.rst ├── ancestor.deps ├── ansible-12.0.0a1-tags.yaml ├── ansible-12.0.0a1.deps ├── ansible-12.0.0a1.yaml ├── ansible-12.0.0a2-tags.yaml ├── ansible-12.0.0a2.deps ├── ansible-12.0.0a2.yaml ├── ansible-12.0.0a3-tags.yaml ├── ansible-12.0.0a3.deps ├── ansible-12.0.0a3.yaml ├── ansible-12.0.0a4-tags.yaml ├── ansible-12.0.0a4.deps ├── ansible-12.0.0a4.yaml ├── ansible-12.0.0a5-tags.yaml ├── ansible-12.0.0a5.deps ├── ansible-12.0.0a5.yaml ├── ansible-12.build ├── ansible-12.constraints ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml ├── galaxy-requirements.yaml ├── porting_guide_12.rst └── validate-tags-ignores ├── .github ├── dependabot.yml └── workflows │ ├── ansible-release.yml │ ├── antsibull-build.yml │ └── nox.yml ├── .gitignore ├── .readthedocs.yml ├── .yamllint ├── 2.10 ├── CHANGELOG-v2.10.rst ├── acd-2.10.0a1.deps ├── acd-2.10.0a2.deps ├── acd-2.10.0a3.deps ├── acd-2.10.0a4.deps ├── acd-2.10.0a5.deps ├── acd-2.10.0a6.deps ├── acd-2.10.0a7.deps ├── acd-2.10.build ├── acd.in ├── ansible-2.10.0.deps ├── ansible-2.10.0a1.deps ├── ansible-2.10.0a2.deps ├── ansible-2.10.0a3.deps ├── ansible-2.10.0a4.deps ├── ansible-2.10.0a5.deps ├── ansible-2.10.0a6.deps ├── ansible-2.10.0a7.deps ├── ansible-2.10.0a8.deps ├── ansible-2.10.0a9.deps ├── ansible-2.10.0b1.deps ├── ansible-2.10.0b2.deps ├── ansible-2.10.0rc1.deps ├── ansible-2.10.1.deps ├── ansible-2.10.2.deps ├── ansible-2.10.3.deps ├── ansible-2.10.4.deps ├── ansible-2.10.5.deps ├── ansible-2.10.6.deps ├── ansible-2.10.7.deps ├── ansible-2.10.build ├── ansible.in ├── changelog.yaml ├── collection-meta.yaml └── porting_guide_2.10.rst ├── LICENSE ├── README.md ├── docs-requirements.txt ├── docs ├── CONVENTIONS.md ├── README.md ├── automated-process.md ├── new-ansible.md ├── policies.md └── release-process.md ├── mkdocs.yml └── noxfile.py /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Copyright (c) Ansible Project 3 | # GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) 4 | # SPDX-License-Identifier: GPL-3.0-or-later 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "github-actions" 9 | directory: "/" 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.github/workflows/nox.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) 3 | # SPDX-License-Identifier: GPL-3.0-or-later 4 | # SPDX-FileCopyrightText: 2023 Maxwell G =3.10 4 | amazon.aws: 8.0.0 5 | ansible.netcommon: 6.1.2 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.1 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.9 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.1 21 | cisco.meraki: 2.18.1 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.20.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 3.0.0 32 | community.docker: 3.10.3 33 | community.general: 9.0.1 34 | community.grafana: 1.9.1 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.0 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.4 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.1 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.4.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.4.0 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.5.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.2.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.1 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.1 75 | kubernetes.core: 3.1.0 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.18.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.28.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.2 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.0.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.0a1 2 | _ansible_core_version: 2.17.0b1 3 | _python: >=3.10 4 | amazon.aws: 7.5.0 5 | ansible.netcommon: 6.0.0 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.0.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 8.0.0 10 | awx.awx: 24.1.0 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.2 17 | cisco.intersight: 2.0.8 18 | cisco.ios: 7.0.0 19 | cisco.iosxr: 8.0.0 20 | cisco.ise: 2.8.1 21 | cisco.meraki: 2.18.0 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 7.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 7.2.0 28 | community.ciscosmb: 1.0.8 29 | community.crypto: 2.18.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 2.8.3 32 | community.docker: 3.8.1 33 | community.general: 8.5.0 34 | community.grafana: 1.8.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 1.9.1 37 | community.library_inventory_filtering_v1: 1.0.0 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.3 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.0 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.14.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.2.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.3.1 52 | containers.podman: 1.12.1 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.1.0 57 | dellemc.powerflex: 2.3.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.4.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 3.0.0 65 | hetzner.hcloud: 3.0.0 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.3 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.0 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 7.0.0 74 | kubernetes.core: 3.0.1 75 | lowlydba.sqlserver: 2.3.2 76 | microsoft.ad: 1.5.0 77 | netapp.cloudmanager: 21.22.1 78 | netapp.ontap: 22.10.0 79 | netapp.storagegrid: 21.12.0 80 | netapp_eseries.santricity: 1.4.0 81 | netbox.netbox: 3.17.0 82 | ngine_io.cloudstack: 2.3.0 83 | ngine_io.exoscale: 1.1.0 84 | openstack.cloud: 2.2.0 85 | openvswitch.openvswitch: 2.1.1 86 | ovirt.ovirt: 3.2.0 87 | purestorage.flasharray: 1.27.0 88 | purestorage.flashblade: 1.17.0 89 | sensu.sensu_go: 1.14.0 90 | splunk.es: 3.0.0 91 | t_systems_mms.icinga_director: 2.0.1 92 | telekom_mms.icinga_director: 2.1.0 93 | theforeman.foreman: 4.0.0 94 | vmware.vmware_rest: 3.0.1 95 | vultr.cloud: 1.12.1 96 | vyos.vyos: 4.1.0 97 | wti.remote: 1.0.5 98 | -------------------------------------------------------------------------------- /10/ansible-10.0.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.0a2 2 | _ansible_core_version: 2.17.0rc1 3 | _python: >=3.10 4 | amazon.aws: 7.5.0 5 | ansible.netcommon: 6.1.1 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.0 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.8 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.0 21 | cisco.meraki: 2.18.0 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 7.2.0 28 | community.ciscosmb: 1.0.8 29 | community.crypto: 2.19.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 2.9.0 32 | community.docker: 3.9.0 33 | community.general: 8.6.0 34 | community.grafana: 1.8.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 1.9.2 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.3 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.0 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.3.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.3.1 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.4.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.0.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.0 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.1 75 | kubernetes.core: 3.0.1 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.17.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.27.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.1 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.0.0a3.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.0a3 2 | _ansible_core_version: 2.17.0rc2 3 | _python: >=3.10 4 | amazon.aws: 7.6.0 5 | ansible.netcommon: 6.1.1 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.1 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.9 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.0 21 | cisco.meraki: 2.18.1 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 7.2.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.19.1 30 | community.digitalocean: 1.26.0 31 | community.dns: 2.9.0 32 | community.docker: 3.9.0 33 | community.general: 8.6.0 34 | community.grafana: 1.9.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.0 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.4 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.0 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.3.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.4.0 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.5.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.2.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.1 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.1 75 | kubernetes.core: 3.0.1 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.18.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.28.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.1 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.0.0b1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.0b1 2 | _ansible_core_version: 2.17.0 3 | _python: >=3.10 4 | amazon.aws: 8.0.0 5 | ansible.netcommon: 6.1.1 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.1 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.9 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.1 21 | cisco.meraki: 2.18.1 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.20.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 3.0.0 32 | community.docker: 3.10.1 33 | community.general: 9.0.0 34 | community.grafana: 1.9.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.0 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.4 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.1 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.4.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.4.0 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.5.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.2.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.1 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.1 75 | kubernetes.core: 3.1.0 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.18.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.28.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.1 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.0.0rc1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.0rc1 2 | _ansible_core_version: 2.17.0 3 | _python: >=3.10 4 | amazon.aws: 8.0.0 5 | ansible.netcommon: 6.1.2 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.1 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.9 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.1 21 | cisco.meraki: 2.18.1 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.20.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 3.0.0 32 | community.docker: 3.10.3 33 | community.general: 9.0.1 34 | community.grafana: 1.9.1 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.0 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.4 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.1 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.4.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.4.0 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.5.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.2.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.1 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.1 75 | kubernetes.core: 3.1.0 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.18.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.28.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.2 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.0.1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 10.0.1 2 | _ansible_core_version: 2.17.0 3 | _python: >=3.10 4 | amazon.aws: 8.0.0 5 | ansible.netcommon: 6.1.2 6 | ansible.posix: 1.5.4 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.3.0 9 | arista.eos: 9.0.0 10 | awx.awx: 24.3.1 11 | azure.azcollection: 2.3.0 12 | check_point.mgmt: 5.2.3 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.9.0 15 | cisco.asa: 5.0.1 16 | cisco.dnac: 6.13.3 17 | cisco.intersight: 2.0.9 18 | cisco.ios: 8.0.0 19 | cisco.iosxr: 9.0.0 20 | cisco.ise: 2.9.1 21 | cisco.meraki: 2.18.1 22 | cisco.mso: 2.6.0 23 | cisco.nxos: 8.0.0 24 | cisco.ucs: 1.10.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.3.1 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.20.0 30 | community.digitalocean: 1.26.0 31 | community.dns: 3.0.0 32 | community.docker: 3.10.3 33 | community.general: 9.0.1 34 | community.grafana: 1.9.1 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.0 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.4 40 | community.mysql: 3.9.0 41 | community.network: 5.0.2 42 | community.okd: 3.0.1 43 | community.postgresql: 3.4.1 44 | community.proxysql: 1.5.1 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.15.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.6.7 49 | community.vmware: 4.4.0 50 | community.windows: 2.2.0 51 | community.zabbix: 2.4.0 52 | containers.podman: 1.13.0 53 | cyberark.conjur: 1.2.2 54 | cyberark.pas: 1.0.25 55 | dellemc.enterprise_sonic: 2.4.0 56 | dellemc.openmanage: 9.2.0 57 | dellemc.powerflex: 2.4.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.28.0 60 | fortinet.fortimanager: 2.5.0 61 | fortinet.fortios: 2.3.6 62 | frr.frr: 2.0.2 63 | google.cloud: 1.3.0 64 | grafana.grafana: 5.2.0 65 | hetzner.hcloud: 3.1.1 66 | ibm.qradar: 3.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.3.1 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.2 72 | inspur.sm: 2.3.0 73 | junipernetworks.junos: 8.0.0 74 | kaytus.ksmanage: 1.2.2 75 | kubernetes.core: 3.1.0 76 | lowlydba.sqlserver: 2.3.2 77 | microsoft.ad: 1.5.0 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.11.0 80 | netapp.storagegrid: 21.12.0 81 | netapp_eseries.santricity: 1.4.0 82 | netbox.netbox: 3.18.0 83 | ngine_io.cloudstack: 2.3.0 84 | ngine_io.exoscale: 1.1.0 85 | openstack.cloud: 2.2.0 86 | openvswitch.openvswitch: 2.1.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.28.0 89 | purestorage.flashblade: 1.17.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 3.0.0 92 | t_systems_mms.icinga_director: 2.0.1 93 | telekom_mms.icinga_director: 2.1.2 94 | theforeman.foreman: 4.0.0 95 | vmware.vmware_rest: 3.0.1 96 | vultr.cloud: 1.12.1 97 | vyos.vyos: 4.1.0 98 | wti.remote: 1.0.5 99 | -------------------------------------------------------------------------------- /10/ansible-10.constraints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-build-data/d5f016cfcad735f0870e9a20de62143e41d0a7a4/10/ansible-10.constraints -------------------------------------------------------------------------------- /10/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nxos 21 | cisco.ucs 22 | cloud.common 23 | cloudscale_ch.cloud 24 | community.aws 25 | community.ciscosmb 26 | community.crypto 27 | community.digitalocean 28 | community.dns 29 | community.docker 30 | community.general 31 | community.grafana 32 | community.hashi_vault 33 | community.hrobot 34 | community.library_inventory_filtering_v1 35 | community.libvirt 36 | community.mongodb 37 | community.mysql 38 | community.network 39 | community.okd 40 | community.postgresql 41 | community.proxysql 42 | community.rabbitmq 43 | community.routeros 44 | community.sap_libs 45 | community.sops 46 | community.vmware 47 | community.windows 48 | community.zabbix 49 | containers.podman 50 | cyberark.conjur 51 | cyberark.pas 52 | dellemc.enterprise_sonic 53 | dellemc.openmanage 54 | dellemc.powerflex 55 | dellemc.unity 56 | f5networks.f5_modules 57 | fortinet.fortimanager 58 | fortinet.fortios 59 | frr.frr 60 | google.cloud 61 | grafana.grafana 62 | hetzner.hcloud 63 | ibm.qradar 64 | ibm.spectrum_virtualize 65 | ibm.storage_virtualize 66 | ieisystem.inmanage 67 | infinidat.infinibox 68 | infoblox.nios_modules 69 | inspur.ispim 70 | inspur.sm 71 | junipernetworks.junos 72 | kaytus.ksmanage 73 | kubernetes.core 74 | kubevirt.core 75 | lowlydba.sqlserver 76 | microsoft.ad 77 | netapp.cloudmanager 78 | netapp_eseries.santricity 79 | netapp.ontap 80 | netapp.storagegrid 81 | netbox.netbox 82 | ngine_io.cloudstack 83 | ngine_io.exoscale 84 | openstack.cloud 85 | openvswitch.openvswitch 86 | ovirt.ovirt 87 | purestorage.flasharray 88 | purestorage.flashblade 89 | sensu.sensu_go 90 | splunk.es 91 | theforeman.foreman 92 | t_systems_mms.icinga_director 93 | telekom_mms.icinga_director 94 | vmware.vmware 95 | vmware.vmware_rest 96 | vultr.cloud 97 | vyos.vyos 98 | wti.remote 99 | -------------------------------------------------------------------------------- /10/validate-tags-ignores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-build-data/d5f016cfcad735f0870e9a20de62143e41d0a7a4/10/validate-tags-ignores -------------------------------------------------------------------------------- /11/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../10/ansible-10.0.0.deps -------------------------------------------------------------------------------- /11/ansible-11.0.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0 2 | _ansible_core_version: 2.18.0 3 | _python: >=3.11 4 | amazon.aws: 9.0.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.0.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.22.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.3 19 | cisco.iosxr: 10.2.2 20 | cisco.ise: 2.9.5 21 | cisco.meraki: 2.18.3 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.3 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.7 32 | community.docker: 4.0.1 33 | community.general: 10.0.1 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.8 40 | community.mysql: 3.10.3 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.7.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 3.0.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.0 49 | community.vmware: 5.1.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.1 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.8.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.32.1 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.6.0 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.12.0 80 | netapp.storagegrid: 21.13.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.2.0 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.31.1 87 | purestorage.flashblade: 1.19.1 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.0 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.6.0 93 | vmware.vmware_rest: 4.2.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.0.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0a1 2 | _ansible_core_version: 2.18.0b1 3 | _python: >=3.11 4 | amazon.aws: 8.2.1 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.0 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 2.7.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.1 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.18.0 17 | cisco.intersight: 2.0.18 18 | cisco.ios: 9.0.2 19 | cisco.iosxr: 10.1.0 20 | cisco.ise: 2.9.3 21 | cisco.meraki: 2.18.2 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 3.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.0 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.4 32 | community.docker: 3.12.2 33 | community.general: 9.4.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.1 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.6 40 | community.mysql: 3.10.3 41 | community.network: 5.0.3 42 | community.okd: 4.0.0 43 | community.postgresql: 3.6.1 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.19.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.9.0 49 | community.vmware: 5.0.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.0 53 | cyberark.conjur: 1.3.0 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.6.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.31.0 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.7 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.5.1 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 2.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.6.1 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 1.2.2 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.3 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.12.0 80 | netapp_eseries.santricity: 1.4.0 81 | netbox.netbox: 3.20.0 82 | ngine_io.cloudstack: 2.4.1 83 | ngine_io.exoscale: 1.1.0 84 | openstack.cloud: 2.2.0 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.31.1 87 | purestorage.flashblade: 1.18.0 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.1.2 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.5.0 93 | vmware.vmware_rest: 4.1.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.0.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0a2 2 | _ansible_core_version: 2.18.0rc1 3 | _python: >=3.11 4 | amazon.aws: 8.2.1 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.1 7 | ansible.utils: 4.1.0 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 2.7.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.20.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.2 19 | cisco.iosxr: 10.1.0 20 | cisco.ise: 2.9.3 21 | cisco.meraki: 2.18.2 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 8.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.1 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.5 32 | community.docker: 3.13.0 33 | community.general: 9.5.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.1 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.7 40 | community.mysql: 3.10.3 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.7.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 2.19.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 1.9.1 49 | community.vmware: 5.0.1 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.1 53 | cyberark.conjur: 1.3.0 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.7.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.31.0 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.5.1 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.22.1 79 | netapp.ontap: 22.12.0 80 | netapp_eseries.santricity: 1.4.1 81 | netbox.netbox: 3.20.0 82 | ngine_io.cloudstack: 2.5.0 83 | openstack.cloud: 2.2.0 84 | ovirt.ovirt: 3.2.0 85 | purestorage.flasharray: 1.31.1 86 | purestorage.flashblade: 1.18.0 87 | sensu.sensu_go: 1.14.0 88 | splunk.es: 4.0.0 89 | telekom_mms.icinga_director: 2.1.2 90 | theforeman.foreman: 4.2.0 91 | vmware.vmware: 1.5.0 92 | vmware.vmware_rest: 4.1.0 93 | vultr.cloud: 1.13.0 94 | vyos.vyos: 5.0.0 95 | wti.remote: 1.0.10 96 | -------------------------------------------------------------------------------- /11/ansible-11.0.0b1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0b1 2 | _ansible_core_version: 2.18.0 3 | _python: >=3.11 4 | amazon.aws: 9.0.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.0.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.22.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.3 19 | cisco.iosxr: 10.2.2 20 | cisco.ise: 2.9.5 21 | cisco.meraki: 2.18.3 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.3 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.6 32 | community.docker: 4.0.0 33 | community.general: 10.0.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.8 40 | community.mysql: 3.10.3 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.7.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 3.0.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.0 49 | community.vmware: 5.1.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.1 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.8.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.32.1 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.6.0 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.12.0 80 | netapp_eseries.santricity: 1.4.1 81 | netbox.netbox: 3.20.0 82 | ngine_io.cloudstack: 2.5.0 83 | openstack.cloud: 2.2.0 84 | ovirt.ovirt: 3.2.0 85 | purestorage.flasharray: 1.31.1 86 | purestorage.flashblade: 1.19.1 87 | sensu.sensu_go: 1.14.0 88 | splunk.es: 4.0.0 89 | telekom_mms.icinga_director: 2.2.0 90 | theforeman.foreman: 4.2.0 91 | vmware.vmware: 1.6.0 92 | vmware.vmware_rest: 4.2.0 93 | vultr.cloud: 1.13.0 94 | vyos.vyos: 5.0.0 95 | wti.remote: 1.0.10 96 | -------------------------------------------------------------------------------- /11/ansible-11.0.0b2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0b2 2 | _ansible_core_version: 2.18.0 3 | _python: >=3.11 4 | amazon.aws: 9.0.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.0.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.22.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.3 19 | cisco.iosxr: 10.2.2 20 | cisco.ise: 2.9.5 21 | cisco.meraki: 2.18.3 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.3 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.6 32 | community.docker: 4.0.0 33 | community.general: 10.0.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.8 40 | community.mysql: 3.10.3 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.7.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 3.0.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.0 49 | community.vmware: 5.1.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.1 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.8.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.32.1 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.6.0 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.12.0 80 | netapp.storagegrid: 21.13.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.2.0 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.31.1 87 | purestorage.flashblade: 1.19.1 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.0 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.6.0 93 | vmware.vmware_rest: 4.2.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.0.0rc1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.0.0rc1 2 | _ansible_core_version: 2.18.0 3 | _python: >=3.11 4 | amazon.aws: 9.0.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.0.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.22.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.3 19 | cisco.iosxr: 10.2.2 20 | cisco.ise: 2.9.5 21 | cisco.meraki: 2.18.3 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.3 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.0.7 32 | community.docker: 4.0.1 33 | community.general: 10.0.1 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.8 40 | community.mysql: 3.10.3 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.7.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 3.0.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.0 49 | community.vmware: 5.1.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.1.2 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.1 54 | cyberark.pas: 1.0.27 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.8.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.32.1 60 | fortinet.fortimanager: 2.7.0 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.6.0 64 | hetzner.hcloud: 4.2.1 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.12.0 80 | netapp.storagegrid: 21.13.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.2.0 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.31.1 87 | purestorage.flashblade: 1.19.1 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.0 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.6.0 93 | vmware.vmware_rest: 4.2.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.1.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.1.0 2 | _ansible_core_version: 2.18.1 3 | _python: >=3.11 4 | amazon.aws: 9.0.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.5.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.1.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.0.0 16 | cisco.dnac: 6.25.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.0.3 19 | cisco.iosxr: 10.2.2 20 | cisco.ise: 2.9.6 21 | cisco.meraki: 2.18.3 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.2.1 24 | cisco.ucs: 1.14.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.0 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.9 29 | community.crypto: 2.22.3 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.1.0 32 | community.docker: 4.1.0 33 | community.general: 10.1.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.0.2 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.0 39 | community.mongodb: 1.7.8 40 | community.mysql: 3.11.0 41 | community.network: 5.1.0 42 | community.okd: 4.0.0 43 | community.postgresql: 3.9.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.3.0 46 | community.routeros: 3.1.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.0 49 | community.vmware: 5.2.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.2.0 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.1 54 | cyberark.pas: 1.0.30 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.9.0 57 | dellemc.powerflex: 2.5.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.32.1 60 | fortinet.fortimanager: 2.8.2 61 | fortinet.fortios: 2.3.8 62 | google.cloud: 1.4.1 63 | grafana.grafana: 5.6.0 64 | hetzner.hcloud: 4.2.2 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.5.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.1 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.0.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.3.4 77 | microsoft.ad: 1.7.1 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.13.0 80 | netapp.storagegrid: 21.13.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.3.0 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.32.0 87 | purestorage.flashblade: 1.19.1 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.1 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.7.1 93 | vmware.vmware_rest: 4.3.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.2.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.2.0 2 | _ansible_core_version: 2.18.2 3 | _python: >=3.11 4 | amazon.aws: 9.1.1 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.7.0 9 | arista.eos: 10.0.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.1.0 12 | check_point.mgmt: 6.2.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.1.0 16 | cisco.dnac: 6.28.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.1.0 19 | cisco.iosxr: 10.3.0 20 | cisco.ise: 2.10.0 21 | cisco.meraki: 2.20.5 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.3.0 24 | cisco.ucs: 1.15.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.1 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.10 29 | community.crypto: 2.24.0 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.1.2 32 | community.docker: 4.3.1 33 | community.general: 10.3.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.1.0 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.1 39 | community.mongodb: 1.7.9 40 | community.mysql: 3.12.0 41 | community.network: 5.1.0 42 | community.okd: 4.0.1 43 | community.postgresql: 3.10.2 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.4.0 46 | community.routeros: 3.3.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.1 49 | community.vmware: 5.3.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.2.0 52 | containers.podman: 1.16.2 53 | cyberark.conjur: 1.3.2 54 | cyberark.pas: 1.0.30 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.10.0 57 | dellemc.powerflex: 2.6.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.34.1 60 | fortinet.fortimanager: 2.8.2 61 | fortinet.fortios: 2.3.9 62 | google.cloud: 1.5.0 63 | grafana.grafana: 5.7.0 64 | hetzner.hcloud: 4.2.2 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.6.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.7.1 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.1.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.5.0 77 | microsoft.ad: 1.8.0 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.13.0 80 | netapp.storagegrid: 21.13.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.4.1 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.32.0 87 | purestorage.flashblade: 1.19.2 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.2 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.9.0 93 | vmware.vmware_rest: 4.5.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.3.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.3.0 2 | _ansible_core_version: 2.18.3 3 | _python: >=3.11 4 | amazon.aws: 9.2.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.7.0 9 | arista.eos: 10.1.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.2.0 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.1.0 16 | cisco.dnac: 6.30.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.1.1 19 | cisco.iosxr: 10.3.0 20 | cisco.ise: 2.10.0 21 | cisco.meraki: 2.20.8 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.3.0 24 | cisco.ucs: 1.15.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.1 27 | community.aws: 9.0.0 28 | community.ciscosmb: 1.0.10 29 | community.crypto: 2.25.0 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.2.1 32 | community.docker: 4.4.0 33 | community.general: 10.4.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.1.0 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.1 39 | community.mongodb: 1.7.9 40 | community.mysql: 3.12.0 41 | community.network: 5.1.0 42 | community.okd: 4.0.1 43 | community.postgresql: 3.10.2 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.4.0 46 | community.routeros: 3.4.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.2 49 | community.vmware: 5.4.0 50 | community.windows: 2.3.0 51 | community.zabbix: 3.2.0 52 | containers.podman: 1.16.3 53 | cyberark.conjur: 1.3.2 54 | cyberark.pas: 1.0.30 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.10.0 57 | dellemc.powerflex: 2.6.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.34.1 60 | fortinet.fortimanager: 2.9.0 61 | fortinet.fortios: 2.3.9 62 | google.cloud: 1.5.1 63 | grafana.grafana: 5.7.0 64 | hetzner.hcloud: 4.2.2 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.6.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.8.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.1.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.5.0 77 | microsoft.ad: 1.8.0 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.14.0 80 | netapp.storagegrid: 21.14.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.20.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.4.1 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.33.1 87 | purestorage.flashblade: 1.19.2 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.2 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.10.1 93 | vmware.vmware_rest: 4.6.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.4.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.4.0 2 | _ansible_core_version: 2.18.4 3 | _python: >=3.11 4 | amazon.aws: 9.3.0 5 | ansible.netcommon: 7.1.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.8.0 9 | arista.eos: 10.1.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.asa: 6.1.0 16 | cisco.dnac: 6.31.0 17 | cisco.intersight: 2.0.20 18 | cisco.ios: 9.1.2 19 | cisco.iosxr: 10.3.0 20 | cisco.ise: 2.10.0 21 | cisco.meraki: 2.20.8 22 | cisco.mso: 2.9.0 23 | cisco.nxos: 9.3.0 24 | cisco.ucs: 1.15.0 25 | cloud.common: 4.0.0 26 | cloudscale_ch.cloud: 2.4.1 27 | community.aws: 9.1.0 28 | community.ciscosmb: 1.0.10 29 | community.crypto: 2.26.0 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.2.2 32 | community.docker: 4.5.2 33 | community.general: 10.5.0 34 | community.grafana: 2.1.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.2.0 37 | community.library_inventory_filtering_v1: 1.0.2 38 | community.libvirt: 1.3.1 39 | community.mongodb: 1.7.9 40 | community.mysql: 3.13.0 41 | community.network: 5.1.0 42 | community.okd: 4.0.1 43 | community.postgresql: 3.12.0 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.4.0 46 | community.routeros: 3.5.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.3 49 | community.vmware: 5.5.0 50 | community.windows: 2.4.0 51 | community.zabbix: 3.3.0 52 | containers.podman: 1.16.3 53 | cyberark.conjur: 1.3.3 54 | cyberark.pas: 1.0.30 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.10.0 57 | dellemc.powerflex: 2.6.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.34.1 60 | fortinet.fortimanager: 2.9.1 61 | fortinet.fortios: 2.3.9 62 | google.cloud: 1.5.1 63 | grafana.grafana: 5.7.0 64 | hetzner.hcloud: 4.3.0 65 | ibm.qradar: 4.0.0 66 | ibm.spectrum_virtualize: 2.0.0 67 | ibm.storage_virtualize: 2.6.0 68 | ieisystem.inmanage: 3.0.0 69 | infinidat.infinibox: 1.4.5 70 | infoblox.nios_modules: 1.8.0 71 | inspur.ispim: 2.2.3 72 | junipernetworks.junos: 9.1.0 73 | kaytus.ksmanage: 2.0.0 74 | kubernetes.core: 5.1.0 75 | kubevirt.core: 2.1.0 76 | lowlydba.sqlserver: 2.5.0 77 | microsoft.ad: 1.8.0 78 | netapp.cloudmanager: 21.24.0 79 | netapp.ontap: 22.14.0 80 | netapp.storagegrid: 21.14.0 81 | netapp_eseries.santricity: 1.4.1 82 | netbox.netbox: 3.21.0 83 | ngine_io.cloudstack: 2.5.0 84 | openstack.cloud: 2.4.1 85 | ovirt.ovirt: 3.2.0 86 | purestorage.flasharray: 1.33.1 87 | purestorage.flashblade: 1.19.2 88 | sensu.sensu_go: 1.14.0 89 | splunk.es: 4.0.0 90 | telekom_mms.icinga_director: 2.2.2 91 | theforeman.foreman: 4.2.0 92 | vmware.vmware: 1.10.1 93 | vmware.vmware_rest: 4.6.0 94 | vultr.cloud: 1.13.0 95 | vyos.vyos: 5.0.0 96 | wti.remote: 1.0.10 97 | -------------------------------------------------------------------------------- /11/ansible-11.6.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 11.6.0 2 | _ansible_core_version: 2.18.6 3 | _python: >=3.11 4 | amazon.aws: 9.5.0 5 | ansible.netcommon: 7.2.0 6 | ansible.posix: 1.6.2 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.8.0 9 | arista.eos: 10.1.1 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.11.0 15 | cisco.asa: 6.1.0 16 | cisco.dnac: 6.31.3 17 | cisco.intersight: 2.1.0 18 | cisco.ios: 9.2.0 19 | cisco.iosxr: 10.3.1 20 | cisco.ise: 2.10.0 21 | cisco.meraki: 2.21.1 22 | cisco.mso: 2.10.0 23 | cisco.nxos: 9.4.0 24 | cisco.ucs: 1.16.0 25 | cloud.common: 4.1.0 26 | cloudscale_ch.cloud: 2.4.1 27 | community.aws: 9.3.0 28 | community.ciscosmb: 1.0.10 29 | community.crypto: 2.26.1 30 | community.digitalocean: 1.27.0 31 | community.dns: 3.2.4 32 | community.docker: 4.6.0 33 | community.general: 10.7.0 34 | community.grafana: 2.2.0 35 | community.hashi_vault: 6.2.0 36 | community.hrobot: 2.3.0 37 | community.library_inventory_filtering_v1: 1.1.1 38 | community.libvirt: 1.3.1 39 | community.mongodb: 1.7.9 40 | community.mysql: 3.13.0 41 | community.network: 5.1.0 42 | community.okd: 4.0.1 43 | community.postgresql: 3.14.1 44 | community.proxysql: 1.6.0 45 | community.rabbitmq: 1.4.0 46 | community.routeros: 3.6.0 47 | community.sap_libs: 1.4.2 48 | community.sops: 2.0.5 49 | community.vmware: 5.6.0 50 | community.windows: 2.4.0 51 | community.zabbix: 3.3.0 52 | containers.podman: 1.16.3 53 | cyberark.conjur: 1.3.3 54 | cyberark.pas: 1.0.35 55 | dellemc.enterprise_sonic: 2.5.1 56 | dellemc.openmanage: 9.12.0 57 | dellemc.powerflex: 2.6.0 58 | dellemc.unity: 2.0.0 59 | f5networks.f5_modules: 1.35.0 60 | fortinet.fortimanager: 2.9.1 61 | fortinet.fortios: 2.4.0 62 | google.cloud: 1.5.3 63 | grafana.grafana: 5.7.0 64 | hetzner.hcloud: 4.3.0 65 | hitachivantara.vspone_block: 3.4.1 66 | ibm.qradar: 4.0.0 67 | ibm.spectrum_virtualize: 2.0.0 68 | ibm.storage_virtualize: 2.7.3 69 | ieisystem.inmanage: 3.0.0 70 | infinidat.infinibox: 1.4.5 71 | infoblox.nios_modules: 1.8.0 72 | inspur.ispim: 2.2.3 73 | junipernetworks.junos: 9.1.0 74 | kaytus.ksmanage: 2.0.0 75 | kubernetes.core: 5.3.0 76 | kubevirt.core: 2.2.2 77 | lowlydba.sqlserver: 2.6.1 78 | microsoft.ad: 1.9.0 79 | microsoft.iis: 1.0.2 80 | netapp.cloudmanager: 21.24.0 81 | netapp.ontap: 22.14.0 82 | netapp.storagegrid: 21.14.0 83 | netapp_eseries.santricity: 1.4.1 84 | netbox.netbox: 3.21.0 85 | ngine_io.cloudstack: 2.5.0 86 | openstack.cloud: 2.4.1 87 | ovirt.ovirt: 3.2.0 88 | purestorage.flasharray: 1.34.1 89 | purestorage.flashblade: 1.20.0 90 | sensu.sensu_go: 1.14.0 91 | splunk.es: 4.0.0 92 | telekom_mms.icinga_director: 2.2.2 93 | theforeman.foreman: 4.2.0 94 | vmware.vmware: 1.11.0 95 | vmware.vmware_rest: 4.7.0 96 | vultr.cloud: 1.13.0 97 | vyos.vyos: 5.0.0 98 | wti.remote: 1.0.10 99 | -------------------------------------------------------------------------------- /11/ansible-11.constraints: -------------------------------------------------------------------------------- 1 | # cisco.dnac 6.32.0 needs ansible.utils >= 6.0 2 | cisco.dnac: <6.32.0 3 | 4 | # netapp.storagegrid 21.15.0 claims to have breaking changes 5 | netapp.storagegrid: <21.15.0 6 | -------------------------------------------------------------------------------- /11/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nxos 21 | cisco.ucs 22 | cloud.common 23 | cloudscale_ch.cloud 24 | community.aws 25 | community.ciscosmb 26 | community.crypto 27 | community.digitalocean 28 | community.dns 29 | community.docker 30 | community.general 31 | community.grafana 32 | community.hashi_vault 33 | community.hrobot 34 | community.library_inventory_filtering_v1 35 | community.libvirt 36 | community.mongodb 37 | community.mysql 38 | community.network 39 | community.okd 40 | community.postgresql 41 | community.proxysql 42 | community.rabbitmq 43 | community.routeros 44 | community.sap_libs 45 | community.sops 46 | community.vmware 47 | community.windows 48 | community.zabbix 49 | containers.podman 50 | cyberark.conjur 51 | cyberark.pas 52 | dellemc.enterprise_sonic 53 | dellemc.openmanage 54 | dellemc.powerflex 55 | dellemc.unity 56 | f5networks.f5_modules 57 | fortinet.fortimanager 58 | fortinet.fortios 59 | google.cloud 60 | grafana.grafana 61 | hetzner.hcloud 62 | hitachivantara.vspone_block 63 | ibm.qradar 64 | ibm.spectrum_virtualize 65 | ibm.storage_virtualize 66 | ieisystem.inmanage 67 | infinidat.infinibox 68 | infoblox.nios_modules 69 | inspur.ispim 70 | junipernetworks.junos 71 | kaytus.ksmanage 72 | kubernetes.core 73 | kubevirt.core 74 | lowlydba.sqlserver 75 | microsoft.ad 76 | microsoft.iis 77 | netapp.cloudmanager 78 | netapp_eseries.santricity 79 | netapp.ontap 80 | netapp.storagegrid 81 | netbox.netbox 82 | ngine_io.cloudstack 83 | openstack.cloud 84 | ovirt.ovirt 85 | purestorage.flasharray 86 | purestorage.flashblade 87 | sensu.sensu_go 88 | splunk.es 89 | theforeman.foreman 90 | telekom_mms.icinga_director 91 | vmware.vmware 92 | vmware.vmware_rest 93 | vultr.cloud 94 | vyos.vyos 95 | wti.remote 96 | -------------------------------------------------------------------------------- /11/validate-tags-ignores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-build-data/d5f016cfcad735f0870e9a20de62143e41d0a7a4/11/validate-tags-ignores -------------------------------------------------------------------------------- /12/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../11/ansible-11.0.0.deps -------------------------------------------------------------------------------- /12/ansible-12.0.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 12.0.0a1 2 | _ansible_core_version: 2.19.0b1 3 | _python: >=3.11 4 | amazon.aws: 9.4.0 5 | ansible.netcommon: 8.0.0 6 | ansible.posix: 2.0.0 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.8.0 9 | arista.eos: 11.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.10.1 15 | cisco.dnac: 6.31.3 16 | cisco.intersight: 2.0.20 17 | cisco.ios: 10.0.0 18 | cisco.iosxr: 11.0.0 19 | cisco.ise: 2.10.0 20 | cisco.meraki: 2.20.8 21 | cisco.mso: 2.9.0 22 | cisco.nxos: 10.0.0 23 | cisco.ucs: 1.16.0 24 | cloud.common: 4.0.0 25 | cloudscale_ch.cloud: 2.4.1 26 | community.aws: 9.2.0 27 | community.ciscosmb: 1.0.10 28 | community.crypto: 2.26.0 29 | community.digitalocean: 1.27.0 30 | community.dns: 3.2.2 31 | community.docker: 4.5.2 32 | community.general: 10.5.0 33 | community.grafana: 2.1.0 34 | community.hashi_vault: 6.2.0 35 | community.hrobot: 2.2.0 36 | community.library_inventory_filtering_v1: 1.1.0 37 | community.libvirt: 1.3.1 38 | community.mongodb: 1.7.9 39 | community.mysql: 3.13.0 40 | community.okd: 4.0.1 41 | community.postgresql: 3.14.0 42 | community.proxysql: 1.6.0 43 | community.rabbitmq: 1.4.0 44 | community.routeros: 3.5.0 45 | community.sap_libs: 1.4.2 46 | community.sops: 2.0.4 47 | community.vmware: 5.5.0 48 | community.windows: 2.4.0 49 | community.zabbix: 3.3.0 50 | containers.podman: 1.16.3 51 | cyberark.conjur: 1.3.3 52 | cyberark.pas: 1.0.30 53 | dellemc.enterprise_sonic: 3.0.0 54 | dellemc.openmanage: 9.11.0 55 | dellemc.powerflex: 2.6.0 56 | dellemc.unity: 2.0.0 57 | f5networks.f5_modules: 1.35.0 58 | fortinet.fortimanager: 2.9.1 59 | fortinet.fortios: 2.4.0 60 | grafana.grafana: 5.7.0 61 | hetzner.hcloud: 4.3.0 62 | hitachivantara.vspone_block: 3.3.0 63 | ibm.qradar: 4.0.0 64 | ibm.storage_virtualize: 2.7.3 65 | ieisystem.inmanage: 3.0.0 66 | infinidat.infinibox: 1.4.5 67 | infoblox.nios_modules: 1.8.0 68 | inspur.ispim: 2.2.3 69 | junipernetworks.junos: 10.0.0 70 | kaytus.ksmanage: 2.0.0 71 | kubernetes.core: 5.2.0 72 | kubevirt.core: 2.1.0 73 | lowlydba.sqlserver: 2.6.0 74 | microsoft.ad: 1.8.1 75 | microsoft.iis: 1.0.2 76 | netapp.cloudmanager: 21.24.0 77 | netapp.ontap: 22.14.0 78 | netapp.storagegrid: 21.14.0 79 | netapp_eseries.santricity: 1.4.1 80 | netbox.netbox: 3.21.0 81 | ngine_io.cloudstack: 2.5.0 82 | openstack.cloud: 2.4.1 83 | ovirt.ovirt: 3.2.0 84 | purestorage.flasharray: 1.34.1 85 | purestorage.flashblade: 1.19.2 86 | splunk.es: 4.0.0 87 | telekom_mms.icinga_director: 2.2.2 88 | theforeman.foreman: 5.3.0 89 | vmware.vmware: 1.11.0 90 | vmware.vmware_rest: 4.7.0 91 | vultr.cloud: 1.13.0 92 | vyos.vyos: 5.0.0 93 | wti.remote: 1.0.10 94 | -------------------------------------------------------------------------------- /12/ansible-12.0.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 12.0.0a2 2 | _ansible_core_version: 2.19.0b2 3 | _python: >=3.11 4 | amazon.aws: 9.4.0 5 | ansible.netcommon: 8.0.0 6 | ansible.posix: 2.0.0 7 | ansible.utils: 5.1.2 8 | ansible.windows: 2.8.0 9 | arista.eos: 11.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.11.0 15 | cisco.dnac: 6.31.3 16 | cisco.intersight: 2.0.20 17 | cisco.ios: 10.0.0 18 | cisco.iosxr: 11.0.0 19 | cisco.ise: 2.10.0 20 | cisco.meraki: 2.21.0 21 | cisco.mso: 2.10.0 22 | cisco.nxos: 10.0.0 23 | cisco.ucs: 1.16.0 24 | cloud.common: 4.0.0 25 | cloudscale_ch.cloud: 2.4.1 26 | community.aws: 9.2.0 27 | community.ciscosmb: 1.0.10 28 | community.crypto: 2.26.0 29 | community.digitalocean: 1.27.0 30 | community.dns: 3.2.3 31 | community.docker: 4.5.2 32 | community.general: 10.6.0 33 | community.grafana: 2.1.0 34 | community.hashi_vault: 6.2.0 35 | community.hrobot: 2.2.0 36 | community.library_inventory_filtering_v1: 1.1.1 37 | community.libvirt: 1.3.1 38 | community.mongodb: 1.7.9 39 | community.mysql: 3.13.0 40 | community.okd: 4.0.1 41 | community.postgresql: 3.14.0 42 | community.proxysql: 1.6.0 43 | community.rabbitmq: 1.4.0 44 | community.routeros: 3.6.0 45 | community.sap_libs: 1.4.2 46 | community.sops: 2.0.5 47 | community.vmware: 5.6.0 48 | community.windows: 2.4.0 49 | community.zabbix: 3.3.0 50 | containers.podman: 1.16.3 51 | cyberark.conjur: 1.3.3 52 | cyberark.pas: 1.0.30 53 | dellemc.enterprise_sonic: 3.0.0 54 | dellemc.openmanage: 9.11.0 55 | dellemc.powerflex: 2.6.0 56 | dellemc.unity: 2.0.0 57 | f5networks.f5_modules: 1.35.0 58 | fortinet.fortimanager: 2.9.1 59 | fortinet.fortios: 2.4.0 60 | grafana.grafana: 6.0.0 61 | hetzner.hcloud: 4.3.0 62 | hitachivantara.vspone_block: 3.4.0 63 | ibm.qradar: 4.0.0 64 | ibm.storage_virtualize: 2.7.3 65 | ieisystem.inmanage: 3.0.0 66 | infinidat.infinibox: 1.4.5 67 | infoblox.nios_modules: 1.8.0 68 | inspur.ispim: 2.2.3 69 | junipernetworks.junos: 10.0.0 70 | kaytus.ksmanage: 2.0.0 71 | kubernetes.core: 5.2.0 72 | kubevirt.core: 2.1.0 73 | lowlydba.sqlserver: 2.6.0 74 | microsoft.ad: 1.8.1 75 | microsoft.iis: 1.0.2 76 | netapp.cloudmanager: 21.24.0 77 | netapp.ontap: 22.14.0 78 | netapp.storagegrid: 21.14.0 79 | netapp_eseries.santricity: 1.4.1 80 | netbox.netbox: 3.21.0 81 | ngine_io.cloudstack: 2.5.0 82 | openstack.cloud: 2.4.1 83 | ovirt.ovirt: 3.2.0 84 | purestorage.flasharray: 1.34.1 85 | purestorage.flashblade: 1.19.2 86 | splunk.es: 4.0.0 87 | telekom_mms.icinga_director: 2.2.2 88 | theforeman.foreman: 5.3.0 89 | vmware.vmware: 1.11.0 90 | vmware.vmware_rest: 4.7.0 91 | vultr.cloud: 1.13.0 92 | vyos.vyos: 5.0.0 93 | wti.remote: 1.0.10 94 | -------------------------------------------------------------------------------- /12/ansible-12.0.0a3.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 12.0.0a3 2 | _ansible_core_version: 2.19.0b3 3 | _python: >=3.11 4 | amazon.aws: 9.4.0 5 | ansible.netcommon: 8.0.0 6 | ansible.posix: 2.0.0 7 | ansible.utils: 5.1.2 8 | ansible.windows: 3.0.0 9 | arista.eos: 11.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.11.0 15 | cisco.dnac: 6.31.3 16 | cisco.intersight: 2.0.20 17 | cisco.ios: 10.0.0 18 | cisco.iosxr: 11.0.0 19 | cisco.ise: 2.10.0 20 | cisco.meraki: 2.21.0 21 | cisco.mso: 2.10.0 22 | cisco.nxos: 10.0.0 23 | cisco.ucs: 1.16.0 24 | cloud.common: 4.0.0 25 | cloudscale_ch.cloud: 2.4.1 26 | community.aws: 9.3.0 27 | community.ciscosmb: 1.0.10 28 | community.crypto: 2.26.1 29 | community.digitalocean: 1.27.0 30 | community.dns: 3.2.3 31 | community.docker: 4.6.0 32 | community.general: 10.6.0 33 | community.grafana: 2.2.0 34 | community.hashi_vault: 6.2.0 35 | community.hrobot: 2.3.0 36 | community.library_inventory_filtering_v1: 1.1.1 37 | community.libvirt: 1.3.1 38 | community.mongodb: 1.7.9 39 | community.mysql: 3.13.0 40 | community.okd: 4.0.1 41 | community.postgresql: 4.0.0 42 | community.proxysql: 1.6.0 43 | community.rabbitmq: 1.4.0 44 | community.routeros: 3.6.0 45 | community.sap_libs: 1.4.2 46 | community.sops: 2.0.5 47 | community.vmware: 5.6.0 48 | community.windows: 3.0.0 49 | community.zabbix: 3.3.0 50 | containers.podman: 1.16.3 51 | cyberark.conjur: 1.3.3 52 | cyberark.pas: 1.0.32 53 | dellemc.enterprise_sonic: 3.0.0 54 | dellemc.openmanage: 9.12.0 55 | dellemc.powerflex: 2.6.0 56 | dellemc.unity: 2.0.0 57 | f5networks.f5_modules: 1.35.0 58 | fortinet.fortimanager: 2.9.1 59 | fortinet.fortios: 2.4.0 60 | grafana.grafana: 6.0.1 61 | hetzner.hcloud: 4.3.0 62 | hitachivantara.vspone_block: 3.4.0 63 | ibm.qradar: 4.0.0 64 | ibm.storage_virtualize: 2.7.3 65 | ieisystem.inmanage: 3.0.0 66 | infinidat.infinibox: 1.4.5 67 | infoblox.nios_modules: 1.8.0 68 | inspur.ispim: 2.2.3 69 | junipernetworks.junos: 10.0.0 70 | kaytus.ksmanage: 2.0.0 71 | kubernetes.core: 5.2.0 72 | kubevirt.core: 2.2.0 73 | lowlydba.sqlserver: 2.6.1 74 | microsoft.ad: 1.9.0 75 | microsoft.iis: 1.0.2 76 | netapp.cloudmanager: 21.24.0 77 | netapp.ontap: 22.14.0 78 | netapp.storagegrid: 21.14.0 79 | netapp_eseries.santricity: 1.4.1 80 | netbox.netbox: 3.21.0 81 | ngine_io.cloudstack: 2.5.0 82 | openstack.cloud: 2.4.1 83 | ovirt.ovirt: 3.2.0 84 | purestorage.flasharray: 1.34.1 85 | purestorage.flashblade: 1.20.0 86 | splunk.es: 4.0.0 87 | telekom_mms.icinga_director: 2.2.2 88 | theforeman.foreman: 5.3.0 89 | vmware.vmware: 2.0.0 90 | vmware.vmware_rest: 4.7.0 91 | vultr.cloud: 1.13.0 92 | vyos.vyos: 5.0.0 93 | wti.remote: 1.0.10 94 | -------------------------------------------------------------------------------- /12/ansible-12.0.0a4.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 12.0.0a4 2 | _ansible_core_version: 2.19.0b4 3 | _python: >=3.11 4 | amazon.aws: 9.5.0 5 | ansible.netcommon: 8.0.0 6 | ansible.posix: 2.0.0 7 | ansible.utils: 5.1.2 8 | ansible.windows: 3.0.0 9 | arista.eos: 11.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.3.1 12 | check_point.mgmt: 6.4.0 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.11.0 15 | cisco.dnac: 6.31.3 16 | cisco.intersight: 2.0.20 17 | cisco.ios: 10.0.0 18 | cisco.iosxr: 11.0.0 19 | cisco.ise: 2.10.0 20 | cisco.meraki: 2.21.1 21 | cisco.mso: 2.10.0 22 | cisco.nxos: 10.0.0 23 | cisco.ucs: 1.16.0 24 | cloud.common: 4.0.0 25 | cloudscale_ch.cloud: 2.4.1 26 | community.aws: 9.3.0 27 | community.ciscosmb: 1.0.10 28 | community.crypto: 2.26.1 29 | community.digitalocean: 1.27.0 30 | community.dns: 3.2.3 31 | community.docker: 4.6.0 32 | community.general: 10.6.0 33 | community.grafana: 2.2.0 34 | community.hashi_vault: 6.2.0 35 | community.hrobot: 2.3.0 36 | community.library_inventory_filtering_v1: 1.1.1 37 | community.libvirt: 1.3.1 38 | community.mongodb: 1.7.9 39 | community.mysql: 3.13.0 40 | community.okd: 4.0.1 41 | community.postgresql: 4.0.0 42 | community.proxysql: 1.6.0 43 | community.rabbitmq: 1.4.0 44 | community.routeros: 3.6.0 45 | community.sap_libs: 1.4.2 46 | community.sops: 2.0.5 47 | community.vmware: 5.6.0 48 | community.windows: 3.0.0 49 | community.zabbix: 3.3.0 50 | containers.podman: 1.16.3 51 | cyberark.conjur: 1.3.3 52 | cyberark.pas: 1.0.35 53 | dellemc.enterprise_sonic: 3.0.0 54 | dellemc.openmanage: 9.12.0 55 | dellemc.powerflex: 2.6.0 56 | dellemc.unity: 2.0.0 57 | f5networks.f5_modules: 1.35.0 58 | fortinet.fortimanager: 2.9.1 59 | fortinet.fortios: 2.4.0 60 | grafana.grafana: 6.0.1 61 | hetzner.hcloud: 4.3.0 62 | hitachivantara.vspone_block: 3.4.0 63 | ibm.qradar: 4.0.0 64 | ibm.storage_virtualize: 2.7.3 65 | ieisystem.inmanage: 3.0.0 66 | infinidat.infinibox: 1.4.5 67 | infoblox.nios_modules: 1.8.0 68 | inspur.ispim: 2.2.3 69 | junipernetworks.junos: 10.0.0 70 | kaytus.ksmanage: 2.0.0 71 | kubernetes.core: 5.2.0 72 | kubevirt.core: 2.2.0 73 | lowlydba.sqlserver: 2.6.1 74 | microsoft.ad: 1.9.0 75 | microsoft.iis: 1.0.2 76 | netapp.cloudmanager: 21.24.0 77 | netapp.ontap: 23.0.0 78 | netapp.storagegrid: 21.14.0 79 | netapp_eseries.santricity: 1.4.1 80 | netbox.netbox: 3.21.0 81 | ngine_io.cloudstack: 2.5.0 82 | openstack.cloud: 2.4.1 83 | ovirt.ovirt: 3.2.0 84 | purestorage.flasharray: 1.34.1 85 | purestorage.flashblade: 1.20.0 86 | splunk.es: 4.0.0 87 | telekom_mms.icinga_director: 2.2.2 88 | theforeman.foreman: 5.3.0 89 | vmware.vmware: 2.0.0 90 | vmware.vmware_rest: 4.7.0 91 | vultr.cloud: 1.13.0 92 | vyos.vyos: 5.0.0 93 | wti.remote: 1.0.10 94 | -------------------------------------------------------------------------------- /12/ansible-12.0.0a5.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 12.0.0a5 2 | _ansible_core_version: 2.19.0b5 3 | _python: >=3.11 4 | amazon.aws: 10.1.0 5 | ansible.netcommon: 8.0.0 6 | ansible.posix: 2.0.0 7 | ansible.utils: 5.1.2 8 | ansible.windows: 3.1.0 9 | arista.eos: 11.0.0 10 | awx.awx: 24.6.1 11 | azure.azcollection: 3.4.0 12 | check_point.mgmt: 6.4.1 13 | chocolatey.chocolatey: 1.5.3 14 | cisco.aci: 2.11.0 15 | cisco.dnac: 6.31.3 16 | cisco.intersight: 2.1.0 17 | cisco.ios: 10.1.0 18 | cisco.iosxr: 11.1.0 19 | cisco.ise: 2.10.0 20 | cisco.meraki: 2.21.2 21 | cisco.mso: 2.10.0 22 | cisco.nxos: 10.1.0 23 | cisco.ucs: 1.16.0 24 | cloud.common: 4.2.0 25 | cloudscale_ch.cloud: 2.5.1 26 | community.aws: 10.0.0 27 | community.ciscosmb: 1.0.10 28 | community.crypto: 3.0.0-a2 29 | community.digitalocean: 1.27.0 30 | community.dns: 3.2.4 31 | community.docker: 4.6.0 32 | community.general: 10.7.0 33 | community.grafana: 2.2.0 34 | community.hashi_vault: 6.2.0 35 | community.hrobot: 2.3.0 36 | community.library_inventory_filtering_v1: 1.1.1 37 | community.libvirt: 1.4.0 38 | community.mongodb: 1.7.10 39 | community.mysql: 3.14.0 40 | community.okd: 4.0.2 41 | community.postgresql: 4.1.0 42 | community.proxysql: 1.6.0 43 | community.rabbitmq: 1.5.0 44 | community.routeros: 3.7.0 45 | community.sap_libs: 1.4.2 46 | community.sops: 2.0.5 47 | community.vmware: 5.6.0 48 | community.windows: 3.0.0 49 | community.zabbix: 3.3.0 50 | containers.podman: 1.16.3 51 | cyberark.conjur: 1.3.3 52 | cyberark.pas: 1.0.35 53 | dellemc.enterprise_sonic: 3.0.0 54 | dellemc.openmanage: 9.12.1 55 | dellemc.powerflex: 2.6.0 56 | dellemc.unity: 2.0.0 57 | f5networks.f5_modules: 1.36.0 58 | fortinet.fortimanager: 2.9.1 59 | fortinet.fortios: 2.4.0 60 | grafana.grafana: 6.0.1 61 | hetzner.hcloud: 5.0.1 62 | hitachivantara.vspone_block: 3.4.2 63 | ibm.qradar: 4.0.0 64 | ibm.storage_virtualize: 2.7.4 65 | ieisystem.inmanage: 3.0.0 66 | infinidat.infinibox: 1.4.5 67 | infoblox.nios_modules: 1.8.0 68 | inspur.ispim: 2.2.3 69 | junipernetworks.junos: 10.0.0 70 | kaytus.ksmanage: 2.0.0 71 | kubernetes.core: 5.3.0 72 | kubevirt.core: 2.2.2 73 | lowlydba.sqlserver: 2.6.1 74 | microsoft.ad: 1.9.1 75 | microsoft.iis: 1.0.2 76 | netapp.cloudmanager: 21.24.0 77 | netapp.ontap: 23.0.0 78 | netapp.storagegrid: 21.14.0 79 | netapp_eseries.santricity: 1.4.1 80 | netbox.netbox: 3.21.0 81 | ngine_io.cloudstack: 2.5.0 82 | openstack.cloud: 2.4.1 83 | ovirt.ovirt: 3.2.1 84 | purestorage.flasharray: 1.34.1 85 | purestorage.flashblade: 1.20.0 86 | splunk.es: 4.0.0 87 | telekom_mms.icinga_director: 2.2.2 88 | theforeman.foreman: 5.3.0 89 | vmware.vmware: 2.0.1 90 | vmware.vmware_rest: 4.7.0 91 | vultr.cloud: 1.13.0 92 | vyos.vyos: 5.0.0 93 | wti.remote: 1.0.10 94 | -------------------------------------------------------------------------------- /12/ansible-12.constraints: -------------------------------------------------------------------------------- 1 | # ERROR: cisco.ise 2.10.0 version_conflict: ansible.utils-6.0.0 but needs >=2.0.0,<6.0 2 | ansible.utils: <6.0.0 3 | # cisco.dnac 6.32.0 needs ansible.utils >= 6.0 -- restrict as long as we have the ansible.utils restriction in there 4 | cisco.dnac: <6.32.0 5 | 6 | # ERROR: kubevirt.core 2.2.2 version_conflict: kubernetes.core-6.0.0 but needs >=5.2.0,<6.0.0 7 | # ERROR: community.okd 4.0.2 version_conflict: kubernetes.core-6.0.0 but needs >=5.0.0,<6.0.0 8 | kubernetes.core: <6.0.0 9 | 10 | # ERROR: grafana.grafana contains a node_modules folder 11 | grafana.grafana: !=6.0.0 12 | -------------------------------------------------------------------------------- /12/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.dnac 13 | cisco.intersight 14 | cisco.ios 15 | cisco.iosxr 16 | cisco.ise 17 | cisco.meraki 18 | cisco.mso 19 | cisco.nxos 20 | cisco.ucs 21 | cloud.common 22 | cloudscale_ch.cloud 23 | community.aws 24 | community.ciscosmb 25 | community.crypto 26 | community.digitalocean 27 | community.dns 28 | community.docker 29 | community.general 30 | community.grafana 31 | community.hashi_vault 32 | community.hrobot 33 | community.library_inventory_filtering_v1 34 | community.libvirt 35 | community.mongodb 36 | community.mysql 37 | community.okd 38 | community.postgresql 39 | community.proxysql 40 | community.rabbitmq 41 | community.routeros 42 | community.sap_libs 43 | community.sops 44 | community.vmware 45 | community.windows 46 | community.zabbix 47 | containers.podman 48 | cyberark.conjur 49 | cyberark.pas 50 | dellemc.enterprise_sonic 51 | dellemc.openmanage 52 | dellemc.powerflex 53 | dellemc.unity 54 | f5networks.f5_modules 55 | fortinet.fortimanager 56 | fortinet.fortios 57 | grafana.grafana 58 | hetzner.hcloud 59 | hitachivantara.vspone_block 60 | ibm.qradar 61 | ibm.storage_virtualize 62 | ieisystem.inmanage 63 | infinidat.infinibox 64 | infoblox.nios_modules 65 | inspur.ispim 66 | junipernetworks.junos 67 | kaytus.ksmanage 68 | kubernetes.core 69 | kubevirt.core 70 | lowlydba.sqlserver 71 | microsoft.ad 72 | microsoft.iis 73 | netapp.cloudmanager 74 | netapp_eseries.santricity 75 | netapp.ontap 76 | netapp.storagegrid 77 | netbox.netbox 78 | ngine_io.cloudstack 79 | openstack.cloud 80 | ovirt.ovirt 81 | purestorage.flasharray 82 | purestorage.flashblade 83 | splunk.es 84 | theforeman.foreman 85 | telekom_mms.icinga_director 86 | vmware.vmware 87 | vmware.vmware_rest 88 | vultr.cloud 89 | vyos.vyos 90 | wti.remote 91 | -------------------------------------------------------------------------------- /12/changelog.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ancestor: 11.0.0 3 | releases: 4 | 12.0.0a1: 5 | changes: 6 | release_summary: 'Release Date: 2025-04-16 7 | 8 | 9 | `Porting Guide `_' 10 | release_date: '2025-04-16' 11 | 12.0.0a2: 12 | changes: 13 | release_summary: 'Release Date: 2025-04-24 14 | 15 | 16 | `Porting Guide `_' 17 | release_date: '2025-04-24' 18 | 12.0.0a3: 19 | changes: 20 | release_summary: 'Release Date: 2025-05-06 21 | 22 | 23 | `Porting Guide `_' 24 | release_date: '2025-05-06' 25 | 12.0.0a4: 26 | changes: 27 | release_summary: 'Release Date: 2025-05-12 28 | 29 | 30 | `Porting Guide `_' 31 | release_date: '2025-05-12' 32 | 12.0.0a5: 33 | changes: 34 | release_summary: 'Release Date: 2025-06-04 35 | 36 | 37 | `Porting Guide `_' 38 | release_date: '2025-06-04' 39 | remove_collection_changelog_entries: {} 40 | -------------------------------------------------------------------------------- /12/validate-tags-ignores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-build-data/d5f016cfcad735f0870e9a20de62143e41d0a7a4/12/validate-tags-ignores -------------------------------------------------------------------------------- /2.10/acd-2.10.0a1.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a1.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a2.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a2.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a3.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a3.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a4.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a4.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a5.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a5.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a6.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a6.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.0a7.deps: -------------------------------------------------------------------------------- 1 | ansible-2.10.0a7.deps -------------------------------------------------------------------------------- /2.10/acd-2.10.build: -------------------------------------------------------------------------------- 1 | ansible-2.10.build -------------------------------------------------------------------------------- /2.10/acd.in: -------------------------------------------------------------------------------- 1 | ansible.in -------------------------------------------------------------------------------- /2.10/ansible-2.10.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0 2 | _ansible_base_version: 2.10.1 3 | amazon.aws: 1.2.0 4 | ansible.netcommon: 1.2.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.0.0 7 | arista.eos: 1.0.3 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.0.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.0.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.3 16 | cisco.iosxr: 1.0.5 17 | cisco.meraki: 2.0.0 18 | cisco.mso: 1.0.0 19 | cisco.nxos: 1.1.0 20 | cisco.ucs: 1.5.0 21 | cloudscale_ch.cloud: 1.1.0 22 | community.aws: 1.2.0 23 | community.azure: 1.0.0 24 | community.crypto: 1.1.1 25 | community.digitalocean: 1.0.0 26 | community.general: 1.1.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 1.0.0 32 | community.network: 1.1.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.2.0 37 | community.windows: 1.0.0 38 | community.zabbix: 1.0.0 39 | containers.podman: 1.2.0 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.1 43 | dellemc.os6: 1.0.2 44 | dellemc.os9: 1.0.2 45 | f5networks.f5_modules: 1.5.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.0 51 | hetzner.hcloud: 1.0.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.1.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.8.0 57 | netapp.elementsw: 20.8.0 58 | netapp.ontap: 20.8.0 59 | netapp_eseries.santricity: 1.0.8 60 | netbox.netbox: 1.0.2 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.1.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.1.3 67 | purestorage.flasharray: 1.4.0 68 | purestorage.flashblade: 1.3.0 69 | servicenow.servicenow: 1.0.2 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.1.0 72 | vyos.vyos: 1.0.4 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a1 2 | _ansible_base_version: 2.10.0.dev1 3 | amazon.aws: 0.1.3-dev4 4 | ansible.netcommon: 0.0.3 5 | ansible.posix: 0.1.4-dev9 6 | ansible.windows: 0.0.1-beta.3 7 | arista.eos: 0.0.3-dev81 8 | awx.awx: 12.0.0 9 | azure.azcollection: 0.1.3 10 | check_point.mgmt: 1.0.5 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.6 13 | cisco.asa: 0.0.2-dev9 14 | cisco.intersight: 1.0.6 15 | cisco.ios: 0.0.3-dev95 16 | cisco.iosxr: 0.0.3-dev8 17 | cisco.meraki: 1.3.0 18 | cisco.mso: 0.0.6 19 | cisco.nxos: 0.0.3-dev99 20 | cisco.ucs: 1.2.0 21 | cloudscale_ch.cloud: 0.1.0 22 | community.aws: 0.1.3-dev2 23 | community.azure: 0.1.0 24 | community.crypto: 0.1.0 25 | community.general: 0.1.4 26 | community.grafana: 0.2.2 27 | community.kubernetes: 0.11.0 28 | community.libvirt: 0.1.0 29 | community.mongodb: 0.1.2 30 | community.network: 0.1.0 31 | community.rabbitmq: 0.1.0 32 | community.vmware: 0.4.1-dev8 33 | community.windows: 0.0.1 34 | community.zabbix: 0.2.0 35 | containers.podman: 1.0.3 36 | cyberark.pas: 1.0.5 37 | dellemc_networking.os10: 1.0.2 38 | f5networks.f5_modules: 1.4.0 39 | fortinet.fortimanager: 1.0.3 40 | fortinet.fortios: 1.0.9 41 | frr.frr: 0.0.2 42 | google.cloud: 0.0.9 43 | ibm.qradar: 0.0.9-dev4 44 | junipernetworks.junos: 0.0.4-dev9 45 | netapp.aws: 20.6.0 46 | netapp.elementsw: 20.6.0 47 | netapp.ontap: 20.6.1 48 | netbox.netbox: 0.2.2 49 | ngine_io.cloudstack: 0.2.0 50 | ngine_io.exoscale: 0.1.1 51 | ngine_io.vultr: 0.0.1 52 | openstack.cloud: 1.0.1 53 | openvswitch.openvswitch: 0.0.2-dev1 54 | ovirt.ovirt: 1.0.0 55 | purestorage.flasharray: 1.2.7 56 | purestorage.flashblade: 1.2.3 57 | servicenow.servicenow: 1.0.2 58 | skydive.skydive: 0.0.1-dev6 59 | splunk.es: 0.0.3-dev1 60 | theforeman.foreman: 0.8.1 61 | vyos.vyos: 0.0.4-dev9 62 | wti.remote: 1.0.1 63 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a2 2 | _ansible_base_version: 2.10.0b1 3 | amazon.aws: 1.0.1-dev7 4 | ansible.netcommon: 1.0.1-dev4 5 | ansible.posix: 1.0.1-dev2 6 | ansible.windows: 0.0.1-beta.3 7 | arista.eos: 1.0.1-dev3 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.2.0 10 | check_point.mgmt: 1.0.5 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev2 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev2 16 | cisco.iosxr: 1.0.3-dev3 17 | cisco.meraki: 1.3.1 18 | cisco.mso: 0.0.6 19 | cisco.nxos: 1.0.1-dev3 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.general: 0.3.0-experimental.meta.redirects 26 | community.grafana: 0.2.2 27 | community.kubernetes: 0.11.1 28 | community.libvirt: 0.1.0 29 | community.mongodb: 0.1.2 30 | community.network: 0.2.1 31 | community.rabbitmq: 0.1.0 32 | community.vmware: 1.0.1-dev9 33 | community.windows: 0.0.1 34 | community.zabbix: 0.2.0 35 | containers.podman: 1.0.4 36 | cyberark.conjur: 1.0.6 37 | cyberark.pas: 1.0.5 38 | dellemc_networking.os10: 1.0.2 39 | f5networks.f5_modules: 1.4.0 40 | fortinet.fortimanager: 1.0.3 41 | fortinet.fortios: 1.0.13 42 | frr.frr: 1.0.1-dev1 43 | google.cloud: 0.10.1 44 | hetzner.hcloud: 0.2.0 45 | ibm.qradar: 1.0.1 46 | junipernetworks.junos: 1.0.1-dev4 47 | mellanox.onyx: 0.1.0 48 | netapp.aws: 20.6.0 49 | netapp.elementsw: 20.6.0 50 | netapp.ontap: 20.7.0 51 | netapp_eseries.santricity: 1.0.8 52 | netbox.netbox: 0.2.3 53 | ngine_io.cloudstack: 0.3.0 54 | ngine_io.exoscale: 0.1.1 55 | ngine_io.vultr: 0.3.0 56 | openstack.cloud: 1.0.1 57 | openvswitch.openvswitch: 1.0.1-dev2 58 | ovirt.ovirt: 1.0.0 59 | purestorage.flasharray: 1.2.7 60 | purestorage.flashblade: 1.2.4 61 | servicenow.servicenow: 1.0.3-dev2 62 | skydive.skydive: 0.0.1-dev6 63 | splunk.es: 1.0.0 64 | theforeman.foreman: 1.0.1 65 | vyos.vyos: 1.0.2-dev2 66 | wti.remote: 1.0.1 67 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a3.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a3 2 | _ansible_base_version: 2.10.0b1 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.0.1-dev8 5 | ansible.posix: 1.0.1-dev8 6 | ansible.windows: 0.0.1-beta.3 7 | arista.eos: 1.0.1-dev9 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.2.0 10 | check_point.mgmt: 1.0.5 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev3 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev4 16 | cisco.iosxr: 1.0.3-dev6 17 | cisco.meraki: 1.3.1 18 | cisco.mso: 0.0.7 19 | cisco.nxos: 1.0.1-dev7 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 0.3.0-experimental.meta.redirects-3 27 | community.grafana: 0.2.2 28 | community.kubernetes: 0.11.1 29 | community.libvirt: 0.1.0 30 | community.mongodb: 0.1.2 31 | community.mysql: 0.1.0 32 | community.network: 0.2.1 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.0.1-dev9 36 | community.windows: 0.0.1 37 | community.zabbix: 0.2.0 38 | containers.podman: 1.0.5 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc_networking.os10: 1.0.2 42 | f5networks.f5_modules: 1.4.0 43 | fortinet.fortimanager: 1.0.3 44 | fortinet.fortios: 1.0.13 45 | frr.frr: 1.0.1-dev1 46 | google.cloud: 0.10.1 47 | hetzner.hcloud: 0.2.0 48 | ibm.qradar: 1.0.2-dev1 49 | infinidat.infinibox: 1.2.3 50 | junipernetworks.junos: 1.0.1-dev6 51 | mellanox.onyx: 0.1.0 52 | netapp.aws: 20.6.0 53 | netapp.elementsw: 20.6.0 54 | netapp.ontap: 20.7.0 55 | netapp_eseries.santricity: 1.0.8 56 | netbox.netbox: 0.3.1 57 | ngine_io.cloudstack: 0.3.0 58 | ngine_io.exoscale: 0.1.1 59 | ngine_io.vultr: 0.3.0 60 | openstack.cloud: 1.0.1 61 | openvswitch.openvswitch: 1.0.1-dev3 62 | ovirt.ovirt: 1.0.0 63 | purestorage.flasharray: 1.3.0 64 | purestorage.flashblade: 1.2.6 65 | servicenow.servicenow: 1.0.3-dev2 66 | skydive.skydive: 0.0.1-dev6 67 | splunk.es: 1.0.1-dev1 68 | theforeman.foreman: 1.0.1 69 | vyos.vyos: 1.0.2-dev2 70 | wti.remote: 1.0.1 71 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a4.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a4 2 | _ansible_base_version: 2.10.0b1 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.0.1-dev8 5 | ansible.posix: 1.1.1-dev4 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.1-dev9 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.5 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev3 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev5 16 | cisco.iosxr: 1.0.3-dev7 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.1-dev8 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 0.3.0-experimental.meta.redirects-3 27 | community.grafana: 0.2.2 28 | community.kubernetes: 0.11.1 29 | community.libvirt: 0.1.0 30 | community.mongodb: 0.1.2 31 | community.mysql: 0.1.0 32 | community.network: 0.2.1 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.0.1-dev9 36 | community.windows: 0.2.0 37 | community.zabbix: 0.2.0 38 | containers.podman: 1.1.1 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc_networking.os10: 1.0.2 42 | f5networks.f5_modules: 1.5.0 43 | fortinet.fortimanager: 1.0.3 44 | fortinet.fortios: 1.0.13 45 | frr.frr: 1.0.1-dev2 46 | google.cloud: 0.10.1 47 | hetzner.hcloud: 0.2.0 48 | ibm.qradar: 1.0.2-dev1 49 | infinidat.infinibox: 1.2.3 50 | junipernetworks.junos: 1.0.1-dev6 51 | mellanox.onyx: 0.1.0 52 | netapp.aws: 20.6.0 53 | netapp.elementsw: 20.6.0 54 | netapp.ontap: 20.7.0 55 | netapp_eseries.santricity: 1.0.8 56 | netbox.netbox: 0.3.1 57 | ngine_io.cloudstack: 0.3.0 58 | ngine_io.exoscale: 0.1.1 59 | ngine_io.vultr: 0.3.0 60 | openstack.cloud: 1.0.1 61 | openvswitch.openvswitch: 1.0.1-dev4 62 | ovirt.ovirt: 1.0.0 63 | purestorage.flasharray: 1.3.1 64 | purestorage.flashblade: 1.2.6 65 | servicenow.servicenow: 1.0.3-dev2 66 | skydive.skydive: 0.0.1-dev6 67 | splunk.es: 1.0.1-dev1 68 | theforeman.foreman: 1.0.1 69 | vyos.vyos: 1.0.2-dev4 70 | wti.remote: 1.0.1 71 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a5.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a5 2 | _ansible_base_version: 2.10.0rc2 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.0.1-dev8 5 | ansible.posix: 1.1.1-dev4 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.1-dev9 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev4 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev6 16 | cisco.iosxr: 1.0.3-dev7 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.1-dev9 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 0.3.0-experimental.meta.redirects-3 27 | community.grafana: 0.2.2 28 | community.kubernetes: 0.11.1 29 | community.libvirt: 0.1.0 30 | community.mongodb: 0.1.2 31 | community.mysql: 0.1.0 32 | community.network: 0.2.1 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.0.1-dev9 36 | community.windows: 0.2.0 37 | community.zabbix: 0.2.0 38 | containers.podman: 1.1.2 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc.os10: 0.1.0-dev2 42 | f5networks.f5_modules: 1.5.0 43 | fortinet.fortimanager: 1.0.3 44 | fortinet.fortios: 1.0.13 45 | frr.frr: 1.0.1-dev2 46 | google.cloud: 0.10.1 47 | hetzner.hcloud: 0.2.0 48 | ibm.qradar: 1.0.2-dev1 49 | infinidat.infinibox: 1.2.3 50 | junipernetworks.junos: 1.0.1-dev6 51 | mellanox.onyx: 0.1.0 52 | netapp.aws: 20.6.0 53 | netapp.elementsw: 20.6.0 54 | netapp.ontap: 20.7.0 55 | netapp_eseries.santricity: 1.0.8 56 | netbox.netbox: 0.3.1 57 | ngine_io.cloudstack: 0.3.0 58 | ngine_io.exoscale: 0.1.1 59 | ngine_io.vultr: 0.3.0 60 | openstack.cloud: 1.0.1 61 | openvswitch.openvswitch: 1.0.1-dev4 62 | ovirt.ovirt: 1.0.0 63 | purestorage.flasharray: 1.3.1 64 | purestorage.flashblade: 1.2.6 65 | servicenow.servicenow: 1.0.3-dev2 66 | skydive.skydive: 0.0.1-dev6 67 | splunk.es: 1.0.1-dev1 68 | theforeman.foreman: 1.0.1 69 | vyos.vyos: 1.0.2-dev6 70 | wti.remote: 1.0.1 71 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a6.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a6 2 | _ansible_base_version: 2.10.0rc3 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.0.1-dev8 5 | ansible.posix: 1.1.1-dev4 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.1-dev9 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev4 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev6 16 | cisco.iosxr: 1.0.3-dev7 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.1-dev9 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 0.3.0-experimental.meta.redirects-3 27 | community.grafana: 0.2.2 28 | community.kubernetes: 0.11.1 29 | community.libvirt: 0.1.0 30 | community.mongodb: 0.1.2 31 | community.mysql: 0.1.0 32 | community.network: 0.2.1 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.0.1-dev9 36 | community.windows: 0.2.0 37 | community.zabbix: 0.3.0 38 | containers.podman: 1.1.2 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc.os10: 0.1.0-dev2 42 | f5networks.f5_modules: 1.5.0 43 | fortinet.fortimanager: 1.0.3 44 | fortinet.fortios: 1.0.13 45 | frr.frr: 1.0.1-dev2 46 | google.cloud: 0.10.1 47 | hetzner.hcloud: 0.2.0 48 | ibm.qradar: 1.0.2-dev1 49 | infinidat.infinibox: 1.2.3 50 | junipernetworks.junos: 1.0.1-dev6 51 | mellanox.onyx: 0.1.0 52 | netapp.aws: 20.6.0 53 | netapp.elementsw: 20.6.0 54 | netapp.ontap: 20.7.0 55 | netapp_eseries.santricity: 1.0.8 56 | netbox.netbox: 0.3.1 57 | ngine_io.cloudstack: 0.3.0 58 | ngine_io.exoscale: 0.1.1 59 | ngine_io.vultr: 0.3.0 60 | openstack.cloud: 1.0.1 61 | openvswitch.openvswitch: 1.0.1-dev4 62 | ovirt.ovirt: 1.0.0 63 | purestorage.flasharray: 1.3.1 64 | purestorage.flashblade: 1.2.6 65 | servicenow.servicenow: 1.0.3-dev2 66 | skydive.skydive: 0.0.1-dev6 67 | splunk.es: 1.0.1-dev1 68 | theforeman.foreman: 1.0.1 69 | vyos.vyos: 1.0.2-dev6 70 | wti.remote: 1.0.1 71 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a7.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a7 2 | _ansible_base_version: 2.10.0rc4 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.1.0 5 | ansible.posix: 1.1.1-dev4 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.1-dev9 8 | awx.awx: 13.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1-dev5 14 | cisco.intersight: 1.0.7 15 | cisco.ios: 1.0.1-dev7 16 | cisco.iosxr: 1.0.3-dev7 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.1-dev9 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 0.3.0-experimental.meta.redirects-3 27 | community.grafana: 0.2.2 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 0.1.0 30 | community.mongodb: 0.1.2 31 | community.mysql: 0.1.0 32 | community.network: 0.2.1 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.0.1-dev9 36 | community.windows: 0.2.0 37 | community.zabbix: 0.3.0 38 | containers.podman: 1.1.3 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc.os10: 0.1.0-dev2 42 | f5networks.f5_modules: 1.5.0 43 | fortinet.fortimanager: 1.0.3 44 | fortinet.fortios: 1.0.13 45 | frr.frr: 1.0.1-dev2 46 | google.cloud: 0.10.2 47 | hetzner.hcloud: 0.2.0 48 | ibm.qradar: 1.0.2-dev1 49 | infinidat.infinibox: 1.2.3 50 | junipernetworks.junos: 1.0.1-dev8 51 | mellanox.onyx: 0.1.0 52 | netapp.aws: 20.6.0 53 | netapp.elementsw: 20.6.0 54 | netapp.ontap: 20.7.0 55 | netapp_eseries.santricity: 1.0.8 56 | netbox.netbox: 0.3.1 57 | ngine_io.cloudstack: 0.3.0 58 | ngine_io.exoscale: 0.1.1 59 | ngine_io.vultr: 0.3.0 60 | openstack.cloud: 1.0.1 61 | openvswitch.openvswitch: 1.0.1-dev4 62 | ovirt.ovirt: 1.0.0 63 | purestorage.flasharray: 1.3.1 64 | purestorage.flashblade: 1.2.6 65 | servicenow.servicenow: 1.0.3-dev2 66 | skydive.skydive: 0.0.1-dev6 67 | splunk.es: 1.0.1-dev1 68 | theforeman.foreman: 1.0.1 69 | vyos.vyos: 1.0.2-dev8 70 | wti.remote: 1.0.1 71 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a8.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a8 2 | _ansible_base_version: 2.10.0rc4 3 | amazon.aws: 1.0.1-dev9 4 | ansible.netcommon: 1.1.1 5 | ansible.posix: 1.1.1-dev9 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.1 8 | awx.awx: 14.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.1 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.1 16 | cisco.iosxr: 1.0.3 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.1 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.0.1-dev1 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 1.0.0 27 | community.grafana: 0.2.2 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 0.1.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 0.1.0 32 | community.network: 1.0.0 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.1.1-dev2 36 | community.windows: 0.2.0 37 | community.zabbix: 0.3.0 38 | containers.podman: 1.1.4 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc.os10: 1.0.0 42 | dellemc.os6: 1.0.1 43 | dellemc.os9: 1.0.1 44 | f5networks.f5_modules: 1.5.0 45 | fortinet.fortimanager: 1.0.4 46 | fortinet.fortios: 1.0.13 47 | frr.frr: 1.0.1 48 | google.cloud: 1.0.0 49 | hetzner.hcloud: 0.2.0 50 | ibm.qradar: 1.0.2-dev1 51 | infinidat.infinibox: 1.2.3 52 | junipernetworks.junos: 1.0.1-dev9 53 | mellanox.onyx: 0.1.0 54 | netapp.aws: 20.8.0 55 | netapp.elementsw: 20.8.0 56 | netapp.ontap: 20.8.0 57 | netapp_eseries.santricity: 1.0.8 58 | netbox.netbox: 0.3.1 59 | ngine_io.cloudstack: 0.3.0 60 | ngine_io.exoscale: 0.1.1 61 | ngine_io.vultr: 0.3.0 62 | openstack.cloud: 1.0.1 63 | openvswitch.openvswitch: 1.0.1 64 | ovirt.ovirt: 1.0.0 65 | purestorage.flasharray: 1.3.1 66 | purestorage.flashblade: 1.2.6 67 | servicenow.servicenow: 1.0.3-dev2 68 | skydive.skydive: 0.0.1-dev6 69 | splunk.es: 1.0.1-dev1 70 | theforeman.foreman: 1.0.1 71 | vyos.vyos: 1.0.2 72 | wti.remote: 1.0.1 73 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0a9.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0a9 2 | _ansible_base_version: 2.10.0 3 | amazon.aws: 1.1.0 4 | ansible.netcommon: 1.1.3-dev3 5 | ansible.posix: 1.1.1-dev9 6 | ansible.windows: 0.2.0 7 | arista.eos: 1.0.3-dev1 8 | awx.awx: 14.0.0 9 | azure.azcollection: 0.3.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 0.0.7 13 | cisco.asa: 1.0.2 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.2 16 | cisco.iosxr: 1.0.4 17 | cisco.meraki: 1.3.2 18 | cisco.mso: 0.0.8 19 | cisco.nxos: 1.0.2 20 | cisco.ucs: 1.4.0 21 | cloudscale_ch.cloud: 1.0.0 22 | community.aws: 1.1.0 23 | community.azure: 0.1.0 24 | community.crypto: 1.0.0 25 | community.digitalocean: 0.1.0 26 | community.general: 1.0.0 27 | community.grafana: 0.2.2 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 0.1.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 0.1.0 32 | community.network: 1.0.0 33 | community.proxysql: 0.1.0 34 | community.rabbitmq: 0.1.0 35 | community.vmware: 1.1.1-dev3 36 | community.windows: 0.2.0 37 | community.zabbix: 0.3.0 38 | containers.podman: 1.1.4 39 | cyberark.conjur: 1.0.6 40 | cyberark.pas: 1.0.5 41 | dellemc.os10: 1.0.0 42 | dellemc.os6: 1.0.1 43 | dellemc.os9: 1.0.1 44 | f5networks.f5_modules: 1.5.0 45 | fortinet.fortimanager: 1.0.4 46 | fortinet.fortios: 1.0.13 47 | frr.frr: 1.0.2 48 | gluster.gluster: 1.0.0 49 | google.cloud: 1.0.0 50 | hetzner.hcloud: 1.0.0 51 | ibm.qradar: 1.0.2-dev1 52 | infinidat.infinibox: 1.2.3 53 | junipernetworks.junos: 1.0.1 54 | mellanox.onyx: 0.1.0 55 | netapp.aws: 20.8.0 56 | netapp.elementsw: 20.8.0 57 | netapp.ontap: 20.8.0 58 | netapp_eseries.santricity: 1.0.8 59 | netbox.netbox: 1.0.0 60 | ngine_io.cloudstack: 0.3.0 61 | ngine_io.exoscale: 0.1.1 62 | ngine_io.vultr: 0.3.0 63 | openstack.cloud: 1.0.1 64 | openvswitch.openvswitch: 1.0.4 65 | ovirt.ovirt: 1.1.1 66 | purestorage.flasharray: 1.4.0 67 | purestorage.flashblade: 1.3.0 68 | servicenow.servicenow: 1.0.3-dev2 69 | skydive.skydive: 0.0.1-dev7 70 | splunk.es: 1.0.1-dev1 71 | theforeman.foreman: 1.0.1 72 | vyos.vyos: 1.0.4-dev1 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0b1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0b1 2 | _ansible_base_version: 2.10.1rc2 3 | amazon.aws: 1.2.0 4 | ansible.netcommon: 1.2.0 5 | ansible.posix: 1.1.0 6 | ansible.windows: 1.0.0 7 | arista.eos: 1.0.3 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.0.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.0.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.3 16 | cisco.iosxr: 1.0.5 17 | cisco.meraki: 2.0.0 18 | cisco.mso: 1.0.0 19 | cisco.nxos: 1.1.0 20 | cisco.ucs: 1.5.0 21 | cloudscale_ch.cloud: 1.1.0 22 | community.aws: 1.2.0 23 | community.azure: 1.0.0 24 | community.crypto: 1.1.0 25 | community.digitalocean: 1.0.0 26 | community.general: 1.1.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 1.0.0 32 | community.network: 1.1.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.2.0 37 | community.windows: 1.0.0 38 | community.zabbix: 1.0.0 39 | containers.podman: 1.2.0 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.1 43 | dellemc.os6: 1.0.2 44 | dellemc.os9: 1.0.2 45 | f5networks.f5_modules: 1.5.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.0 51 | hetzner.hcloud: 1.0.0 52 | ibm.qradar: 1.0.2 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.1.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.8.0 57 | netapp.elementsw: 20.8.0 58 | netapp.ontap: 20.8.0 59 | netapp_eseries.santricity: 1.0.8 60 | netbox.netbox: 1.0.2 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.1.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.1.2 67 | purestorage.flasharray: 1.4.0 68 | purestorage.flashblade: 1.3.0 69 | servicenow.servicenow: 1.0.2 70 | splunk.es: 1.0.1 71 | theforeman.foreman: 1.1.0 72 | vyos.vyos: 1.0.4 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0b2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0b2 2 | _ansible_base_version: 2.10.1rc3 3 | amazon.aws: 1.2.0 4 | ansible.netcommon: 1.2.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.0.0 7 | arista.eos: 1.0.3 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.0.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.0.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.3 16 | cisco.iosxr: 1.0.5 17 | cisco.meraki: 2.0.0 18 | cisco.mso: 1.0.0 19 | cisco.nxos: 1.1.0 20 | cisco.ucs: 1.5.0 21 | cloudscale_ch.cloud: 1.1.0 22 | community.aws: 1.2.0 23 | community.azure: 1.0.0 24 | community.crypto: 1.1.0 25 | community.digitalocean: 1.0.0 26 | community.general: 1.1.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 1.0.0 32 | community.network: 1.1.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.2.0 37 | community.windows: 1.0.0 38 | community.zabbix: 1.0.0 39 | containers.podman: 1.2.0 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.1 43 | dellemc.os6: 1.0.2 44 | dellemc.os9: 1.0.2 45 | f5networks.f5_modules: 1.5.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.0 51 | hetzner.hcloud: 1.0.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.1.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.8.0 57 | netapp.elementsw: 20.8.0 58 | netapp.ontap: 20.8.0 59 | netapp_eseries.santricity: 1.0.8 60 | netbox.netbox: 1.0.2 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.1.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.1.3 67 | purestorage.flasharray: 1.4.0 68 | purestorage.flashblade: 1.3.0 69 | servicenow.servicenow: 1.0.2 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.1.0 72 | vyos.vyos: 1.0.4 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.0rc1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.0rc1 2 | _ansible_base_version: 2.10.1 3 | amazon.aws: 1.2.0 4 | ansible.netcommon: 1.2.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.0.0 7 | arista.eos: 1.0.3 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.0.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.0.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.0.3 16 | cisco.iosxr: 1.0.5 17 | cisco.meraki: 2.0.0 18 | cisco.mso: 1.0.0 19 | cisco.nxos: 1.1.0 20 | cisco.ucs: 1.5.0 21 | cloudscale_ch.cloud: 1.1.0 22 | community.aws: 1.2.0 23 | community.azure: 1.0.0 24 | community.crypto: 1.1.1 25 | community.digitalocean: 1.0.0 26 | community.general: 1.1.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.0.0 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 1.0.0 32 | community.network: 1.1.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.2.0 37 | community.windows: 1.0.0 38 | community.zabbix: 1.0.0 39 | containers.podman: 1.2.0 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.1 43 | dellemc.os6: 1.0.2 44 | dellemc.os9: 1.0.2 45 | f5networks.f5_modules: 1.5.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.0 51 | hetzner.hcloud: 1.0.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.1.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.8.0 57 | netapp.elementsw: 20.8.0 58 | netapp.ontap: 20.8.0 59 | netapp_eseries.santricity: 1.0.8 60 | netbox.netbox: 1.0.2 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.1.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.1.3 67 | purestorage.flasharray: 1.4.0 68 | purestorage.flashblade: 1.3.0 69 | servicenow.servicenow: 1.0.2 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.1.0 72 | vyos.vyos: 1.0.4 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.1 2 | _ansible_base_version: 2.10.2 3 | amazon.aws: 1.2.1 4 | ansible.netcommon: 1.3.0 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.0.1 7 | arista.eos: 1.1.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.2.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.0.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.1.0 16 | cisco.iosxr: 1.1.0 17 | cisco.meraki: 2.0.0 18 | cisco.mso: 1.0.0 19 | cisco.nxos: 1.2.0 20 | cisco.ucs: 1.5.0 21 | cloudscale_ch.cloud: 1.2.0 22 | community.aws: 1.2.1 23 | community.azure: 1.0.0 24 | community.crypto: 1.2.0 25 | community.digitalocean: 1.0.0 26 | community.general: 1.2.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.1.1 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.0.0 31 | community.mysql: 1.1.0 32 | community.network: 1.2.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.3.0 37 | community.windows: 1.1.0 38 | community.zabbix: 1.0.0 39 | containers.podman: 1.3.1 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.1 43 | dellemc.os6: 1.0.2 44 | dellemc.os9: 1.0.2 45 | f5networks.f5_modules: 1.5.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.1 51 | hetzner.hcloud: 1.1.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.1.1 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.9.0 57 | netapp.elementsw: 20.10.0 58 | netapp.ontap: 20.10.0 59 | netapp_eseries.santricity: 1.0.8 60 | netbox.netbox: 1.1.0 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.2.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.1.4 67 | purestorage.flasharray: 1.4.0 68 | purestorage.flashblade: 1.3.0 69 | servicenow.servicenow: 1.0.2 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.3.0 72 | vyos.vyos: 1.0.5 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.2 2 | _ansible_base_version: 2.10.3 3 | amazon.aws: 1.2.1 4 | ansible.netcommon: 1.4.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.2.0 7 | arista.eos: 1.2.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.2.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.2.0 16 | cisco.iosxr: 1.1.0 17 | cisco.meraki: 2.1.1 18 | cisco.mso: 1.0.1 19 | cisco.nxos: 1.3.0 20 | cisco.ucs: 1.6.0 21 | cloudscale_ch.cloud: 1.2.0 22 | community.aws: 1.2.1 23 | community.azure: 1.0.0 24 | community.crypto: 1.2.0 25 | community.digitalocean: 1.0.0 26 | community.general: 1.2.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.1.1 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.1.0 31 | community.mysql: 1.1.1 32 | community.network: 1.2.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.3.0 37 | community.windows: 1.1.0 38 | community.zabbix: 1.1.0 39 | containers.podman: 1.3.2 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.2 43 | dellemc.os6: 1.0.3 44 | dellemc.os9: 1.0.3 45 | f5networks.f5_modules: 1.6.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.1 51 | hetzner.hcloud: 1.1.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.2.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.9.0 57 | netapp.elementsw: 20.10.0 58 | netapp.ontap: 20.10.0 59 | netapp_eseries.santricity: 1.1.0 60 | netbox.netbox: 1.1.0 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.2.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.2.1 67 | purestorage.flasharray: 1.5.0 68 | purestorage.flashblade: 1.4.0 69 | servicenow.servicenow: 1.0.3 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.4.0 72 | vyos.vyos: 1.1.0 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.3.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.3 2 | _ansible_base_version: 2.10.3 3 | amazon.aws: 1.2.1 4 | ansible.netcommon: 1.4.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.2.0 7 | arista.eos: 1.2.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.2.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.0 13 | cisco.asa: 1.0.3 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.2.0 16 | cisco.iosxr: 1.1.0 17 | cisco.meraki: 2.1.2 18 | cisco.mso: 1.0.1 19 | cisco.nxos: 1.3.0 20 | cisco.ucs: 1.6.0 21 | cloudscale_ch.cloud: 1.2.0 22 | community.aws: 1.2.1 23 | community.azure: 1.0.0 24 | community.crypto: 1.2.0 25 | community.digitalocean: 1.0.0 26 | community.general: 1.2.0 27 | community.grafana: 1.0.0 28 | community.kubernetes: 1.1.1 29 | community.libvirt: 1.0.0 30 | community.mongodb: 1.1.0 31 | community.mysql: 1.1.1 32 | community.network: 1.2.0 33 | community.proxysql: 1.0.0 34 | community.rabbitmq: 1.0.1 35 | community.skydive: 1.0.0 36 | community.vmware: 1.3.0 37 | community.windows: 1.1.0 38 | community.zabbix: 1.1.0 39 | containers.podman: 1.3.2 40 | cyberark.conjur: 1.0.7 41 | cyberark.pas: 1.0.5 42 | dellemc.os10: 1.0.2 43 | dellemc.os6: 1.0.3 44 | dellemc.os9: 1.0.3 45 | f5networks.f5_modules: 1.6.0 46 | fortinet.fortimanager: 1.0.5 47 | fortinet.fortios: 1.0.15 48 | frr.frr: 1.0.3 49 | gluster.gluster: 1.0.1 50 | google.cloud: 1.0.1 51 | hetzner.hcloud: 1.1.0 52 | ibm.qradar: 1.0.3 53 | infinidat.infinibox: 1.2.3 54 | junipernetworks.junos: 1.2.0 55 | mellanox.onyx: 1.0.0 56 | netapp.aws: 20.9.0 57 | netapp.elementsw: 20.10.0 58 | netapp.ontap: 20.10.0 59 | netapp_eseries.santricity: 1.1.0 60 | netbox.netbox: 1.1.0 61 | ngine_io.cloudstack: 1.0.1 62 | ngine_io.exoscale: 1.0.0 63 | ngine_io.vultr: 1.0.0 64 | openstack.cloud: 1.2.0 65 | openvswitch.openvswitch: 1.0.5 66 | ovirt.ovirt: 1.2.1 67 | purestorage.flasharray: 1.5.0 68 | purestorage.flashblade: 1.4.0 69 | servicenow.servicenow: 1.0.3 70 | splunk.es: 1.0.2 71 | theforeman.foreman: 1.4.0 72 | vyos.vyos: 1.1.0 73 | wti.remote: 1.0.1 74 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.4.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.4 2 | _ansible_base_version: 2.10.3 3 | amazon.aws: 1.2.1 4 | ansible.netcommon: 1.4.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.2.0 7 | arista.eos: 1.2.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.2.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.1 13 | cisco.asa: 1.0.4 14 | cisco.intersight: 1.0.8 15 | cisco.ios: 1.2.1 16 | cisco.iosxr: 1.2.0 17 | cisco.meraki: 2.1.2 18 | cisco.mso: 1.0.1 19 | cisco.nxos: 1.3.1 20 | cisco.ucs: 1.6.0 21 | cloudscale_ch.cloud: 1.3.0 22 | community.aws: 1.2.1 23 | community.azure: 1.0.0 24 | community.crypto: 1.3.0 25 | community.digitalocean: 1.0.0 26 | community.docker: 1.0.0 27 | community.general: 1.3.0 28 | community.grafana: 1.1.0 29 | community.hrobot: 1.0.0 30 | community.kubernetes: 1.1.1 31 | community.libvirt: 1.0.0 32 | community.mongodb: 1.1.1 33 | community.mysql: 1.1.1 34 | community.network: 1.3.0 35 | community.okd: 1.0.1 36 | community.postgresql: 1.0.0 37 | community.proxysql: 1.0.0 38 | community.rabbitmq: 1.0.1 39 | community.routeros: 1.0.0 40 | community.skydive: 1.0.0 41 | community.vmware: 1.4.0 42 | community.windows: 1.1.0 43 | community.zabbix: 1.1.0 44 | containers.podman: 1.3.2 45 | cyberark.conjur: 1.0.7 46 | cyberark.pas: 1.0.5 47 | dellemc.os10: 1.0.2 48 | dellemc.os6: 1.0.4 49 | dellemc.os9: 1.0.3 50 | f5networks.f5_modules: 1.6.0 51 | fortinet.fortimanager: 1.0.5 52 | fortinet.fortios: 1.0.15 53 | frr.frr: 1.0.3 54 | gluster.gluster: 1.0.1 55 | google.cloud: 1.0.1 56 | hetzner.hcloud: 1.2.0 57 | ibm.qradar: 1.0.3 58 | infinidat.infinibox: 1.2.3 59 | junipernetworks.junos: 1.2.1 60 | mellanox.onyx: 1.0.0 61 | netapp.aws: 20.9.0 62 | netapp.elementsw: 20.11.0 63 | netapp.ontap: 20.11.0 64 | netapp_eseries.santricity: 1.1.0 65 | netbox.netbox: 1.1.0 66 | ngine_io.cloudstack: 1.1.0 67 | ngine_io.exoscale: 1.0.0 68 | ngine_io.vultr: 1.0.0 69 | openstack.cloud: 1.2.0 70 | openvswitch.openvswitch: 1.1.0 71 | ovirt.ovirt: 1.2.3 72 | purestorage.flasharray: 1.5.0 73 | purestorage.flashblade: 1.4.0 74 | servicenow.servicenow: 1.0.3 75 | splunk.es: 1.0.2 76 | theforeman.foreman: 1.4.0 77 | vyos.vyos: 1.1.0 78 | wti.remote: 1.0.1 79 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.5.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.5 2 | _ansible_base_version: 2.10.4 3 | amazon.aws: 1.3.0 4 | ansible.netcommon: 1.4.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.3.0 7 | arista.eos: 1.2.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.3.1 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.1 13 | cisco.asa: 1.0.4 14 | cisco.intersight: 1.0.9 15 | cisco.ios: 1.2.1 16 | cisco.iosxr: 1.2.0 17 | cisco.meraki: 2.1.3 18 | cisco.mso: 1.0.1 19 | cisco.nso: 1.0.2 20 | cisco.nxos: 1.3.1 21 | cisco.ucs: 1.6.0 22 | cloudscale_ch.cloud: 1.3.0 23 | community.aws: 1.3.0 24 | community.azure: 1.0.0 25 | community.crypto: 1.3.0 26 | community.digitalocean: 1.0.0 27 | community.docker: 1.1.0 28 | community.general: 1.3.2 29 | community.google: 1.0.0 30 | community.grafana: 1.1.0 31 | community.hashi_vault: 1.0.0 32 | community.hrobot: 1.1.0 33 | community.kubernetes: 1.1.1 34 | community.kubevirt: 1.0.0 35 | community.libvirt: 1.0.0 36 | community.mongodb: 1.1.1 37 | community.mysql: 1.1.2 38 | community.network: 1.3.0 39 | community.okd: 1.0.1 40 | community.postgresql: 1.0.0 41 | community.proxysql: 1.0.0 42 | community.rabbitmq: 1.0.1 43 | community.routeros: 1.1.0 44 | community.skydive: 1.0.0 45 | community.vmware: 1.6.0 46 | community.windows: 1.2.0 47 | community.zabbix: 1.1.0 48 | containers.podman: 1.4.1 49 | cyberark.conjur: 1.1.0 50 | cyberark.pas: 1.0.5 51 | dellemc.os10: 1.0.2 52 | dellemc.os6: 1.0.6 53 | dellemc.os9: 1.0.3 54 | f5networks.f5_modules: 1.6.0 55 | fortinet.fortimanager: 1.0.5 56 | fortinet.fortios: 1.1.8 57 | frr.frr: 1.0.3 58 | gluster.gluster: 1.0.1 59 | google.cloud: 1.0.1 60 | hetzner.hcloud: 1.2.1 61 | ibm.qradar: 1.0.3 62 | infinidat.infinibox: 1.2.4 63 | junipernetworks.junos: 1.2.1 64 | mellanox.onyx: 1.0.0 65 | netapp.aws: 20.9.0 66 | netapp.elementsw: 20.11.0 67 | netapp.ontap: 20.12.0 68 | netapp_eseries.santricity: 1.1.0 69 | netbox.netbox: 1.2.0 70 | ngine_io.cloudstack: 1.1.0 71 | ngine_io.exoscale: 1.0.0 72 | ngine_io.vultr: 1.0.0 73 | openstack.cloud: 1.2.1 74 | openvswitch.openvswitch: 1.1.0 75 | ovirt.ovirt: 1.2.4 76 | purestorage.flasharray: 1.5.1 77 | purestorage.flashblade: 1.4.0 78 | servicenow.servicenow: 1.0.3 79 | splunk.es: 1.0.2 80 | theforeman.foreman: 1.5.1 81 | vyos.vyos: 1.1.0 82 | wti.remote: 1.0.1 83 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.6.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.6 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.3.0 4 | ansible.netcommon: 1.4.1 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.3.0 7 | arista.eos: 1.2.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.3.1 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.1 13 | cisco.asa: 1.0.4 14 | cisco.intersight: 1.0.10 15 | cisco.ios: 1.2.1 16 | cisco.iosxr: 1.2.0 17 | cisco.meraki: 2.1.3 18 | cisco.mso: 1.1.0 19 | cisco.nso: 1.0.2 20 | cisco.nxos: 1.3.1 21 | cisco.ucs: 1.6.0 22 | cloudscale_ch.cloud: 1.3.1 23 | community.aws: 1.3.0 24 | community.azure: 1.0.0 25 | community.crypto: 1.4.0 26 | community.digitalocean: 1.0.0 27 | community.docker: 1.2.0 28 | community.fortios: 1.0.0 29 | community.general: 1.3.5 30 | community.google: 1.0.0 31 | community.grafana: 1.1.0 32 | community.hashi_vault: 1.0.0 33 | community.hrobot: 1.1.0 34 | community.kubernetes: 1.1.1 35 | community.kubevirt: 1.0.0 36 | community.libvirt: 1.0.0 37 | community.mongodb: 1.1.2 38 | community.mysql: 1.2.0 39 | community.network: 1.3.1 40 | community.okd: 1.0.1 41 | community.postgresql: 1.1.0 42 | community.proxysql: 1.0.0 43 | community.rabbitmq: 1.0.1 44 | community.routeros: 1.1.0 45 | community.skydive: 1.0.0 46 | community.vmware: 1.6.0 47 | community.windows: 1.2.0 48 | community.zabbix: 1.2.0 49 | containers.podman: 1.4.1 50 | cyberark.conjur: 1.1.0 51 | cyberark.pas: 1.0.5 52 | dellemc.os10: 1.0.2 53 | dellemc.os6: 1.0.6 54 | dellemc.os9: 1.0.3 55 | f5networks.f5_modules: 1.7.1 56 | fortinet.fortimanager: 1.0.5 57 | fortinet.fortios: 1.1.8 58 | frr.frr: 1.0.3 59 | gluster.gluster: 1.0.1 60 | google.cloud: 1.0.1 61 | hetzner.hcloud: 1.2.1 62 | ibm.qradar: 1.0.3 63 | infinidat.infinibox: 1.2.4 64 | junipernetworks.junos: 1.2.1 65 | mellanox.onyx: 1.0.0 66 | netapp.aws: 20.9.0 67 | netapp.elementsw: 20.11.0 68 | netapp.ontap: 20.12.0 69 | netapp_eseries.santricity: 1.1.0 70 | netbox.netbox: 1.2.1 71 | ngine_io.cloudstack: 1.1.0 72 | ngine_io.exoscale: 1.0.0 73 | ngine_io.vultr: 1.0.0 74 | openstack.cloud: 1.2.1 75 | openvswitch.openvswitch: 1.1.0 76 | ovirt.ovirt: 1.2.4 77 | purestorage.flasharray: 1.5.1 78 | purestorage.flashblade: 1.4.0 79 | servicenow.servicenow: 1.0.3 80 | splunk.es: 1.0.2 81 | theforeman.foreman: 1.5.1 82 | vyos.vyos: 1.1.0 83 | wti.remote: 1.0.1 84 | -------------------------------------------------------------------------------- /2.10/ansible-2.10.7.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 2.10.7 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.4.0 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.1.1 6 | ansible.windows: 1.4.0 7 | arista.eos: 1.3.0 8 | awx.awx: 14.1.0 9 | azure.azcollection: 1.4.0 10 | check_point.mgmt: 1.0.6 11 | chocolatey.chocolatey: 1.0.2 12 | cisco.aci: 1.1.1 13 | cisco.asa: 1.0.4 14 | cisco.intersight: 1.0.10 15 | cisco.ios: 1.3.0 16 | cisco.iosxr: 1.2.1 17 | cisco.meraki: 2.2.0 18 | cisco.mso: 1.1.0 19 | cisco.nso: 1.0.3 20 | cisco.nxos: 1.4.0 21 | cisco.ucs: 1.6.0 22 | cloudscale_ch.cloud: 1.3.1 23 | community.aws: 1.3.0 24 | community.azure: 1.0.0 25 | community.crypto: 1.4.0 26 | community.digitalocean: 1.0.0 27 | community.docker: 1.2.2 28 | community.fortios: 1.0.0 29 | community.general: 1.3.6 30 | community.google: 1.0.0 31 | community.grafana: 1.1.0 32 | community.hashi_vault: 1.1.0 33 | community.hrobot: 1.1.0 34 | community.kubernetes: 1.1.1 35 | community.kubevirt: 1.0.0 36 | community.libvirt: 1.0.0 37 | community.mongodb: 1.2.0 38 | community.mysql: 1.2.0 39 | community.network: 1.3.2 40 | community.okd: 1.0.0 41 | community.postgresql: 1.1.1 42 | community.proxysql: 1.0.0 43 | community.rabbitmq: 1.0.1 44 | community.routeros: 1.1.0 45 | community.skydive: 1.0.0 46 | community.vmware: 1.7.0 47 | community.windows: 1.3.0 48 | community.zabbix: 1.2.0 49 | containers.podman: 1.4.1 50 | cyberark.conjur: 1.1.0 51 | cyberark.pas: 1.0.5 52 | dellemc.os10: 1.0.2 53 | dellemc.os6: 1.0.6 54 | dellemc.os9: 1.0.3 55 | f5networks.f5_modules: 1.7.1 56 | fortinet.fortimanager: 1.0.5 57 | fortinet.fortios: 1.1.8 58 | frr.frr: 1.0.3 59 | gluster.gluster: 1.0.1 60 | google.cloud: 1.0.2 61 | hetzner.hcloud: 1.2.1 62 | ibm.qradar: 1.0.3 63 | infinidat.infinibox: 1.2.4 64 | junipernetworks.junos: 1.3.0 65 | mellanox.onyx: 1.0.0 66 | netapp.aws: 20.9.0 67 | netapp.elementsw: 20.11.0 68 | netapp.ontap: 20.12.0 69 | netapp_eseries.santricity: 1.1.0 70 | netbox.netbox: 1.2.1 71 | ngine_io.cloudstack: 1.2.0 72 | ngine_io.exoscale: 1.0.0 73 | ngine_io.vultr: 1.1.0 74 | openstack.cloud: 1.2.1 75 | openvswitch.openvswitch: 1.1.0 76 | ovirt.ovirt: 1.3.0 77 | purestorage.flasharray: 1.6.2 78 | purestorage.flashblade: 1.4.0 79 | servicenow.servicenow: 1.0.4 80 | splunk.es: 1.0.2 81 | theforeman.foreman: 1.5.1 82 | vyos.vyos: 1.1.1 83 | wti.remote: 1.0.1 84 | -------------------------------------------------------------------------------- /2.10/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.windows 5 | arista.eos 6 | awx.awx 7 | azure.azcollection 8 | check_point.mgmt 9 | chocolatey.chocolatey 10 | cisco.aci 11 | cisco.asa 12 | cisco.intersight 13 | cisco.ios 14 | cisco.iosxr 15 | cisco.meraki 16 | cisco.mso 17 | cisco.nso 18 | cisco.nxos 19 | cisco.ucs 20 | cloudscale_ch.cloud 21 | community.aws 22 | community.azure 23 | community.crypto 24 | community.digitalocean 25 | community.docker 26 | community.fortios 27 | community.general 28 | community.google 29 | community.grafana 30 | community.hashi_vault 31 | community.hrobot 32 | community.kubernetes 33 | community.kubevirt 34 | community.libvirt 35 | community.mongodb 36 | community.mysql 37 | community.network 38 | community.okd 39 | community.postgresql 40 | community.proxysql 41 | community.rabbitmq 42 | community.routeros 43 | community.skydive 44 | community.vmware 45 | community.windows 46 | community.zabbix 47 | containers.podman 48 | cyberark.conjur 49 | cyberark.pas 50 | dellemc.os10 51 | dellemc.os6 52 | dellemc.os9 53 | f5networks.f5_modules 54 | fortinet.fortimanager 55 | fortinet.fortios 56 | frr.frr 57 | gluster.gluster 58 | google.cloud 59 | hetzner.hcloud 60 | ibm.qradar 61 | infinidat.infinibox 62 | #infobox.nios_modules # NOT FOR 2.10 https://github.com/infobloxopen/infoblox-ansible/issues/7 63 | junipernetworks.junos 64 | mellanox.onyx 65 | netapp.aws 66 | netapp.elementsw 67 | netapp_eseries.santricity 68 | netapp.ontap 69 | netbox.netbox 70 | ngine_io.cloudstack 71 | ngine_io.exoscale 72 | ngine_io.vultr 73 | openstack.cloud 74 | openvswitch.openvswitch 75 | ovirt.ovirt 76 | purestorage.flasharray 77 | purestorage.flashblade 78 | servicenow.servicenow 79 | splunk.es 80 | theforeman.foreman 81 | vyos.vyos 82 | wti.remote 83 | -------------------------------------------------------------------------------- /2.10/collection-meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | cyberark.conjur: 4 | changelog-url: https://github.com/cyberark/ansible-conjur-collection/blob/master/CHANGELOG.md 5 | -------------------------------------------------------------------------------- /3/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../2.10/ansible-2.10.0.deps -------------------------------------------------------------------------------- /3/ansible-3.0.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.0.0 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.3.0 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.1.1 6 | ansible.utils: 2.0.0 7 | ansible.windows: 1.3.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.0.1 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.10 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.0 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.0.0 24 | community.aws: 1.3.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.4.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.2.2 29 | community.fortios: 1.0.0 30 | community.general: 2.0.1 31 | community.google: 1.0.0 32 | community.grafana: 1.1.0 33 | community.hashi_vault: 1.0.0 34 | community.hrobot: 1.1.0 35 | community.kubernetes: 1.1.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.0 38 | community.mongodb: 1.2.0 39 | community.mysql: 1.2.0 40 | community.network: 2.0.1 41 | community.okd: 1.0.1 42 | community.postgresql: 1.1.1 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.1 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.4 48 | community.vmware: 1.7.0 49 | community.windows: 1.2.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.5 54 | dellemc.openmanage: 3.0.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.6 57 | dellemc.os9: 1.0.3 58 | f5networks.f5_modules: 1.7.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.8 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.2.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.1.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.1.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 2.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.2.1 80 | openvswitch.openvswitch: 1.1.0 81 | ovirt.ovirt: 1.3.0 82 | purestorage.flasharray: 1.5.1 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.8.0 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.13.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.0.0b1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.0.0b1 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.3.0 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.1.1 6 | ansible.utils: 2.0.0 7 | ansible.windows: 1.3.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.0.1 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.10 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.0 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.0.0 24 | community.aws: 1.3.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.4.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.2.1 29 | community.fortios: 1.0.0 30 | community.general: 2.0.0 31 | community.google: 1.0.0 32 | community.grafana: 1.1.0 33 | community.hashi_vault: 1.0.0 34 | community.hrobot: 1.1.0 35 | community.kubernetes: 1.1.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.0 38 | community.mongodb: 1.2.0 39 | community.mysql: 1.2.0 40 | community.network: 2.0.0 41 | community.okd: 1.0.1 42 | community.postgresql: 1.1.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.1 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.3 48 | community.vmware: 1.7.0 49 | community.windows: 1.2.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.5 54 | dellemc.openmanage: 3.0.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.6 57 | dellemc.os9: 1.0.3 58 | f5networks.f5_modules: 1.7.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.8 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.1 64 | hetzner.hcloud: 1.2.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.1.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.1.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 2.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.2.1 80 | openvswitch.openvswitch: 1.1.0 81 | ovirt.ovirt: 1.3.0 82 | purestorage.flasharray: 1.5.1 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.8.0 85 | servicenow.servicenow: 1.0.3 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.13.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.0.0rc1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.0.0rc1 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.3.0 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.1.1 6 | ansible.utils: 2.0.0 7 | ansible.windows: 1.3.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.0.1 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.10 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.0 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.0.0 24 | community.aws: 1.3.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.4.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.2.2 29 | community.fortios: 1.0.0 30 | community.general: 2.0.1 31 | community.google: 1.0.0 32 | community.grafana: 1.1.0 33 | community.hashi_vault: 1.0.0 34 | community.hrobot: 1.1.0 35 | community.kubernetes: 1.1.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.0 38 | community.mongodb: 1.2.0 39 | community.mysql: 1.2.0 40 | community.network: 2.0.1 41 | community.okd: 1.0.1 42 | community.postgresql: 1.1.1 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.1 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.4 48 | community.vmware: 1.7.0 49 | community.windows: 1.2.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.5 54 | dellemc.openmanage: 3.0.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.6 57 | dellemc.os9: 1.0.3 58 | f5networks.f5_modules: 1.7.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.8 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.2.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.1.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.1.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 2.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.2.1 80 | openvswitch.openvswitch: 1.1.0 81 | ovirt.ovirt: 1.3.0 82 | purestorage.flasharray: 1.5.1 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.8.0 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.13.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.1.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.1.0 2 | _ansible_base_version: 2.10.5 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.1 7 | ansible.windows: 1.4.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.1.0 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.11 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.5.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.3.0 29 | community.fortios: 1.0.0 30 | community.general: 2.2.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.0 33 | community.hashi_vault: 1.1.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.0 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.0.1 41 | community.okd: 1.1.0 42 | community.postgresql: 1.1.1 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.5 48 | community.vmware: 1.8.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.4 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.5 54 | dellemc.openmanage: 3.1.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.8.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.2.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.2.0 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.3.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 2.1.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.3.0 80 | openvswitch.openvswitch: 1.2.0 81 | ovirt.ovirt: 1.3.1 82 | purestorage.flasharray: 1.6.2 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.9.1 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.15.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.2.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.2.0 2 | _ansible_base_version: 2.10.7 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.2 7 | ansible.windows: 1.4.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.1.0 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.4.0 29 | community.fortios: 1.0.0 30 | community.general: 2.4.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.0 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.0 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.1.0 41 | community.okd: 1.1.0 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.8.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.4.4 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.2.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.8.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.3.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.2.0 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.3.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 2.1.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.3.0 80 | openvswitch.openvswitch: 1.2.0 81 | ovirt.ovirt: 1.4.1 82 | purestorage.flasharray: 1.7.0 83 | purestorage.flashblade: 1.5.0 84 | sensu.sensu_go: 1.9.3 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.3.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.3.0 2 | _ansible_base_version: 2.10.8 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.2 7 | ansible.windows: 1.5.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.1.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.1 27 | community.digitalocean: 1.1.1 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 2.5.1 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.4.0 40 | community.network: 2.1.1 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.2.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.9.0 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.4.2 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.2.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.4.0 74 | netapp_eseries.santricity: 1.2.7 75 | netbox.netbox: 2.1.0 76 | ngine_io.cloudstack: 2.1.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.4.0 80 | openvswitch.openvswitch: 1.2.0 81 | ovirt.ovirt: 1.4.1 82 | purestorage.flasharray: 1.7.0 83 | purestorage.flashblade: 1.5.0 84 | sensu.sensu_go: 1.9.4 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible-3.4.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 3.4.0 2 | _ansible_base_version: 2.10.9 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 1.5.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.1.0 7 | ansible.windows: 1.5.0 8 | arista.eos: 1.3.0 9 | awx.awx: 17.1.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 1.0.4 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 1.3.0 17 | cisco.iosxr: 1.2.1 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 1.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.2 27 | community.digitalocean: 1.3.0 28 | community.docker: 1.6.0 29 | community.fortios: 1.0.0 30 | community.general: 2.5.2 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.4.1 40 | community.network: 2.2.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.3.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.10.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.3.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.9.1 59 | fortinet.fortimanager: 2.0.2 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.4.3 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.4 68 | junipernetworks.junos: 1.3.0 69 | kubernetes.core: 1.2.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 20.9.0 72 | netapp.elementsw: 20.11.0 73 | netapp.ontap: 21.6.0 74 | netapp_eseries.santricity: 1.2.8 75 | netbox.netbox: 2.1.0 76 | ngine_io.cloudstack: 2.1.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.4.0 80 | openvswitch.openvswitch: 1.2.0 81 | ovirt.ovirt: 1.4.2 82 | purestorage.flasharray: 1.8.0 83 | purestorage.flashblade: 1.6.0 84 | sensu.sensu_go: 1.10.0 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.17.0 88 | theforeman.foreman: 1.5.1 89 | vyos.vyos: 1.1.1 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /3/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.intersight 14 | cisco.ios 15 | cisco.iosxr 16 | cisco.meraki 17 | cisco.mso 18 | cisco.nso 19 | cisco.nxos 20 | cisco.ucs 21 | cloudscale_ch.cloud 22 | community.aws 23 | community.azure 24 | community.crypto 25 | community.digitalocean 26 | community.docker 27 | community.fortios 28 | community.general 29 | community.google 30 | community.grafana 31 | community.hashi_vault 32 | community.hrobot 33 | community.kubernetes 34 | community.kubevirt 35 | community.libvirt 36 | community.mongodb 37 | community.mysql 38 | community.network 39 | community.okd 40 | community.postgresql 41 | community.proxysql 42 | community.rabbitmq 43 | community.routeros 44 | community.skydive 45 | community.sops 46 | community.vmware 47 | community.windows 48 | community.zabbix 49 | containers.podman 50 | cyberark.conjur 51 | cyberark.pas 52 | dellemc.openmanage 53 | dellemc.os10 54 | dellemc.os6 55 | dellemc.os9 56 | f5networks.f5_modules 57 | fortinet.fortimanager 58 | fortinet.fortios 59 | frr.frr 60 | gluster.gluster 61 | google.cloud 62 | hetzner.hcloud 63 | ibm.qradar 64 | infinidat.infinibox 65 | #infobox.nios_modules # NOT FOR 2.10 https://github.com/infobloxopen/infoblox-ansible/issues/7 66 | inspur.sm 67 | junipernetworks.junos 68 | # community.kubernetes shall be renamed to kubernetes.core, they are already the same build artifact 69 | # https://github.com/ansible-collections/community.kubernetes/issues/221 70 | kubernetes.core 71 | mellanox.onyx 72 | netapp.aws 73 | netapp.elementsw 74 | netapp_eseries.santricity 75 | netapp.ontap 76 | netbox.netbox 77 | ngine_io.cloudstack 78 | ngine_io.exoscale 79 | ngine_io.vultr 80 | openstack.cloud 81 | openvswitch.openvswitch 82 | ovirt.ovirt 83 | purestorage.flasharray 84 | purestorage.flashblade 85 | sensu.sensu_go 86 | servicenow.servicenow 87 | splunk.es 88 | theforeman.foreman 89 | t_systems_mms.icinga_director 90 | vyos.vyos 91 | wti.remote 92 | -------------------------------------------------------------------------------- /3/changelog.yaml: -------------------------------------------------------------------------------- 1 | ancestor: 2.10.0 2 | releases: 3 | 3.0.0b1: 4 | changes: 5 | release_summary: 'Release Date: 2021-02-02 6 | 7 | 8 | `Porting Guide `_' 9 | release_date: '2021-02-02' 10 | 3.0.0rc1: 11 | changes: 12 | release_summary: 'Release Date: 2021-02-09 13 | 14 | 15 | `Porting Guide `_' 16 | release_date: '2021-02-09' 17 | 3.1.0: 18 | changes: 19 | release_summary: 'Release Date: 2021-03-10 20 | 21 | 22 | `Porting Guide `_' 23 | release_date: '2021-03-10' 24 | 3.2.0: 25 | changes: 26 | release_summary: 'Release Date: 2021-03-30 27 | 28 | 29 | `Porting Guide `_' 30 | release_date: '2021-03-30' 31 | 3.3.0: 32 | changes: 33 | release_summary: 'Release Date: 2021-04-20 34 | 35 | 36 | `Porting Guide `_' 37 | release_date: '2021-04-20' 38 | 3.4.0: 39 | changes: 40 | release_summary: 'Release Date: 2021-05-11 41 | 42 | 43 | `Porting Guide `_' 44 | release_date: '2021-05-11' 45 | -------------------------------------------------------------------------------- /3/collection-meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | ansible.utils: 4 | maintainers: 5 | - cidrblock 6 | - ganeshrn 7 | - pabelanger 8 | community.sops: 9 | maintainers: 10 | - endorama 11 | cyberark.conjur: 12 | changelog-url: https://github.com/cyberark/ansible-conjur-collection/blob/master/CHANGELOG.md 13 | dellemc.openmanage: 14 | changelog-url: https://github.com/dell/dellemc-openmanage-ansible-modules/blob/collections/CHANGELOG.rst 15 | maintainers: 16 | - rajeevarakkal 17 | inspur.sm: 18 | maintainers: 19 | - ISIB-Group 20 | kubernetes.core: 21 | maintainers: 22 | - jillr 23 | - akasurde 24 | - gravesm 25 | sensu.sensu_go: 26 | maintainers: 27 | - tadeboro 28 | - mancabizjak 29 | t_systems_mms.icinga_director: 30 | changelog-url: https://github.com/T-Systems-MMS/ansible-collection-icinga-director/blob/master/CHANGELOG.md 31 | maintainers: 32 | - rndmh3ro 33 | - schurzi 34 | -------------------------------------------------------------------------------- /4/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../3/ansible-3.0.0.deps -------------------------------------------------------------------------------- /4/ansible-4.0.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0 2 | _ansible_base_version: 2.11.0 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.0.2 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.1.0 7 | ansible.windows: 1.5.0 8 | arista.eos: 2.1.1 9 | awx.awx: 19.0.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.1 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.1.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.2.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.2 27 | community.digitalocean: 1.1.1 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 3.0.2 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.enterprise_sonic: 1.0.3 55 | dellemc.openmanage: 3.3.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.9.0 60 | fortinet.fortimanager: 2.0.2 61 | fortinet.fortios: 2.0.1 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.1.4 70 | junipernetworks.junos: 2.1.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.5.0 75 | netapp.cloudmanager: 21.5.1 76 | netapp.elementsw: 21.3.0 77 | netapp.ontap: 21.5.0 78 | netapp.um_info: 21.5.0 79 | netapp_eseries.santricity: 1.2.7 80 | netbox.netbox: 3.0.0 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.4.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.4.2 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.9.4 90 | servicenow.servicenow: 1.0.5 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.16.0 93 | theforeman.foreman: 2.0.1 94 | vyos.vyos: 2.2.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.0.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0a1 2 | _ansible_base_version: 2.11.0b2 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 2.0.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.1 7 | ansible.windows: 1.4.0 8 | arista.eos: 2.0.0 9 | awx.awx: 17.1.0 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.0 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 2.0.0 17 | cisco.iosxr: 2.0.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.0.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.5.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.4.0 29 | community.fortios: 1.0.0 30 | community.general: 2.2.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.0 33 | community.hashi_vault: 1.1.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.0 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.0.1 41 | community.okd: 1.1.0 42 | community.postgresql: 1.1.1 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.5 48 | community.vmware: 1.8.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.4 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.5 54 | dellemc.openmanage: 3.1.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.8.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.3.0 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 2.0.0 69 | kubernetes.core: 1.2.0 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 21.2.0 72 | netapp.elementsw: 21.3.0 73 | netapp.ontap: 21.3.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 3.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.3.0 80 | openvswitch.openvswitch: 2.0.0 81 | ovirt.ovirt: 1.4.0 82 | purestorage.flasharray: 1.6.2 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.9.1 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 2.0.1 89 | vyos.vyos: 2.0.0 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /4/ansible-4.0.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0a2 2 | _ansible_base_version: 2.11.0b3 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 2.0.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.1 7 | ansible.windows: 1.4.0 8 | arista.eos: 2.0.0 9 | awx.awx: 18.0.0 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.0 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 2.0.0 17 | cisco.iosxr: 2.0.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.0.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.4.0 29 | community.fortios: 1.0.0 30 | community.general: 2.3.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.0 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.0 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.1.0 41 | community.okd: 1.1.0 42 | community.postgresql: 1.1.1 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.8.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.2.0 51 | containers.podman: 1.4.4 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.1.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.8.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.3.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 2.0.0 69 | kubernetes.core: 1.2.0 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 21.2.0 72 | netapp.elementsw: 21.3.0 73 | netapp.ontap: 21.3.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 3.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.3.0 80 | openvswitch.openvswitch: 2.0.0 81 | ovirt.ovirt: 1.4.1 82 | purestorage.flasharray: 1.6.2 83 | purestorage.flashblade: 1.4.0 84 | sensu.sensu_go: 1.9.1 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 2.0.1 89 | vyos.vyos: 2.0.0 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /4/ansible-4.0.0a3.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0a3 2 | _ansible_base_version: 2.11.0b4 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 2.0.1 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.2 7 | ansible.windows: 1.4.0 8 | arista.eos: 2.0.0 9 | awx.awx: 18.0.0 10 | azure.azcollection: 1.4.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.0.2 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.0 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.0.1 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.1.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.0 27 | community.digitalocean: 1.0.0 28 | community.docker: 1.4.0 29 | community.fortios: 1.0.0 30 | community.general: 2.4.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.0 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.0 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.1.0 41 | community.okd: 1.1.0 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.8.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.4.4 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.2.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.8.1 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 1.1.9 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.3.1 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 2.0.1 69 | kubernetes.core: 1.2.0 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 21.2.0 72 | netapp.elementsw: 21.3.0 73 | netapp.ontap: 21.3.1 74 | netapp_eseries.santricity: 1.1.0 75 | netbox.netbox: 3.0.0 76 | ngine_io.cloudstack: 2.0.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.3.0 80 | openvswitch.openvswitch: 2.0.0 81 | ovirt.ovirt: 1.4.1 82 | purestorage.flasharray: 1.7.0 83 | purestorage.flashblade: 1.5.0 84 | sensu.sensu_go: 1.9.3 85 | servicenow.servicenow: 1.0.4 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 2.0.1 89 | vyos.vyos: 2.0.0 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /4/ansible-4.0.0a4.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0a4 2 | _ansible_base_version: 2.11.0rc2 3 | amazon.aws: 1.4.1 4 | ansible.netcommon: 2.0.1 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.0.2 7 | ansible.windows: 1.4.0 8 | arista.eos: 2.0.1 9 | awx.awx: 19.0.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.0 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.0.2 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.1.1 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.4.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.1 27 | community.digitalocean: 1.1.0 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 2.5.1 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 1.3.0 40 | community.network: 2.1.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.openmanage: 3.2.0 55 | dellemc.os10: 1.1.1 56 | dellemc.os6: 1.0.7 57 | dellemc.os9: 1.0.4 58 | f5networks.f5_modules: 1.9.0 59 | fortinet.fortimanager: 2.0.1 60 | fortinet.fortios: 2.0.1 61 | frr.frr: 1.0.3 62 | gluster.gluster: 1.0.1 63 | google.cloud: 1.0.2 64 | hetzner.hcloud: 1.4.2 65 | ibm.qradar: 1.0.3 66 | infinidat.infinibox: 1.2.4 67 | inspur.sm: 1.1.2 68 | junipernetworks.junos: 2.0.1 69 | kubernetes.core: 1.2.1 70 | mellanox.onyx: 1.0.0 71 | netapp.aws: 21.2.0 72 | netapp.elementsw: 21.3.0 73 | netapp.ontap: 21.4.0 74 | netapp_eseries.santricity: 1.2.4 75 | netbox.netbox: 3.0.0 76 | ngine_io.cloudstack: 2.1.0 77 | ngine_io.exoscale: 1.0.0 78 | ngine_io.vultr: 1.1.0 79 | openstack.cloud: 1.4.0 80 | openvswitch.openvswitch: 2.0.0 81 | ovirt.ovirt: 1.4.1 82 | purestorage.flasharray: 1.7.0 83 | purestorage.flashblade: 1.5.0 84 | sensu.sensu_go: 1.9.4 85 | servicenow.servicenow: 1.0.5 86 | splunk.es: 1.0.2 87 | t_systems_mms.icinga_director: 1.16.0 88 | theforeman.foreman: 2.0.1 89 | vyos.vyos: 2.1.0 90 | wti.remote: 1.0.1 91 | -------------------------------------------------------------------------------- /4/ansible-4.0.0b1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0b1 2 | _ansible_base_version: 2.11.0 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.0.2 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.1.0 7 | ansible.windows: 1.5.0 8 | arista.eos: 2.1.1 9 | awx.awx: 19.0.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.0 15 | cisco.intersight: 1.0.12 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.1.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.2.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.2 27 | community.digitalocean: 1.1.1 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 3.0.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.enterprise_sonic: 1.0.3 55 | dellemc.openmanage: 3.3.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.9.0 60 | fortinet.fortimanager: 2.0.2 61 | fortinet.fortios: 2.0.1 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.1.4 70 | junipernetworks.junos: 2.1.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.5.0 75 | netapp.cloudmanager: 21.5.1 76 | netapp.elementsw: 21.3.0 77 | netapp.ontap: 21.5.0 78 | netapp.um_info: 21.5.0 79 | netapp_eseries.santricity: 1.2.7 80 | netbox.netbox: 3.0.0 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.4.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.4.2 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.9.4 90 | servicenow.servicenow: 1.0.5 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.16.0 93 | theforeman.foreman: 2.0.1 94 | vyos.vyos: 2.2.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.0.0b2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0b2 2 | _ansible_base_version: 2.11.0 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.0.2 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.1.0 7 | ansible.windows: 1.5.0 8 | arista.eos: 2.1.1 9 | awx.awx: 19.0.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.1 15 | cisco.intersight: 1.0.14 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.1.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.2.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.2 27 | community.digitalocean: 1.1.1 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 3.0.1 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.enterprise_sonic: 1.0.3 55 | dellemc.openmanage: 3.3.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.9.0 60 | fortinet.fortimanager: 2.0.2 61 | fortinet.fortios: 2.0.1 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.1.4 70 | junipernetworks.junos: 2.1.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.5.0 75 | netapp.cloudmanager: 21.5.1 76 | netapp.elementsw: 21.3.0 77 | netapp.ontap: 21.5.0 78 | netapp.um_info: 21.5.0 79 | netapp_eseries.santricity: 1.2.7 80 | netbox.netbox: 3.0.0 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.4.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.4.2 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.9.4 90 | servicenow.servicenow: 1.0.5 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.16.0 93 | theforeman.foreman: 2.0.1 94 | vyos.vyos: 2.2.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.0.0rc1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.0.0rc1 2 | _ansible_base_version: 2.11.0 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.0.2 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.1.0 7 | ansible.windows: 1.5.0 8 | arista.eos: 2.1.1 9 | awx.awx: 19.0.0 10 | azure.azcollection: 1.5.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.1 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 2.0.1 17 | cisco.iosxr: 2.1.0 18 | cisco.meraki: 2.2.1 19 | cisco.mso: 1.1.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.2.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.1.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.6.2 27 | community.digitalocean: 1.1.1 28 | community.docker: 1.5.0 29 | community.fortios: 1.0.0 30 | community.general: 3.0.2 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.2.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.9.0 49 | community.windows: 1.3.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.5.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.6 54 | dellemc.enterprise_sonic: 1.0.3 55 | dellemc.openmanage: 3.3.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.9.0 60 | fortinet.fortimanager: 2.0.2 61 | fortinet.fortios: 2.0.1 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.1.4 70 | junipernetworks.junos: 2.1.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.5.0 75 | netapp.cloudmanager: 21.5.1 76 | netapp.elementsw: 21.3.0 77 | netapp.ontap: 21.5.0 78 | netapp.um_info: 21.5.0 79 | netapp_eseries.santricity: 1.2.7 80 | netbox.netbox: 3.0.0 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.4.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.4.2 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.9.4 90 | servicenow.servicenow: 1.0.5 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.16.0 93 | theforeman.foreman: 2.0.1 94 | vyos.vyos: 2.2.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.1.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.1.0 2 | _ansible_base_version: 2.11.1 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.1.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.2.0 7 | ansible.windows: 1.6.0 8 | arista.eos: 2.1.2 9 | awx.awx: 19.2.0 10 | azure.azcollection: 1.7.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.2 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 2.2.0 17 | cisco.iosxr: 2.2.0 18 | cisco.meraki: 2.4.0 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.3.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.7.0 27 | community.digitalocean: 1.5.1 28 | community.docker: 1.7.0 29 | community.fortios: 1.0.0 30 | community.general: 3.2.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.1.3 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.3.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.1.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.0.6 48 | community.vmware: 1.10.0 49 | community.windows: 1.4.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.6.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.4.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.9.1 60 | fortinet.fortimanager: 2.0.3 61 | fortinet.fortios: 2.0.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.2.0 70 | junipernetworks.junos: 2.2.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.7.0 75 | netapp.cloudmanager: 21.7.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.7.0 78 | netapp.um_info: 21.6.0 79 | netapp_eseries.santricity: 1.2.12 80 | netbox.netbox: 3.1.1 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.4.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.5.0 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.11.1 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.17.0 93 | theforeman.foreman: 2.1.0 94 | vyos.vyos: 2.3.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.10.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.10.0 2 | _ansible_base_version: 2.11.7 3 | amazon.aws: 1.5.1 4 | ansible.netcommon: 2.5.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.3 7 | ansible.windows: 1.8.0 8 | arista.eos: 2.2.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.10.0 11 | check_point.mgmt: 2.2.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.1.0 14 | cisco.asa: 2.1.0 15 | cisco.intersight: 1.0.18 16 | cisco.ios: 2.6.0 17 | cisco.iosxr: 2.6.0 18 | cisco.meraki: 2.5.0 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.8.2 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.1.0 26 | community.crypto: 1.9.8 27 | community.digitalocean: 1.13.0 28 | community.docker: 1.10.2 29 | community.fortios: 1.0.0 30 | community.general: 3.8.3 31 | community.google: 1.0.0 32 | community.grafana: 1.3.0 33 | community.hashi_vault: 1.5.0 34 | community.hrobot: 1.2.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.2 39 | community.mysql: 2.3.2 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.6.0 43 | community.proxysql: 1.3.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.2.0 48 | community.vmware: 1.17.0 49 | community.windows: 1.8.0 50 | community.zabbix: 1.5.1 51 | containers.podman: 1.9.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.13 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.13.0 60 | fortinet.fortimanager: 2.1.4 61 | fortinet.fortios: 2.1.3 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.2 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.4 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.3.0 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.8.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.7.0 74 | netapp.azure: 21.10.0 75 | netapp.cloudmanager: 21.12.1 76 | netapp.elementsw: 21.7.0 77 | netapp.ontap: 21.14.1 78 | netapp.um_info: 21.8.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.4.0 81 | ngine_io.cloudstack: 2.2.2 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.3 85 | openvswitch.openvswitch: 2.1.0 86 | ovirt.ovirt: 1.6.6 87 | purestorage.flasharray: 1.11.0 88 | purestorage.flashblade: 1.8.1 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.26.0 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.6.0 95 | wti.remote: 1.0.3 96 | -------------------------------------------------------------------------------- /4/ansible-4.2.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.2.0 2 | _ansible_base_version: 2.11.2 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.2.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.3.0 7 | ansible.windows: 1.7.0 8 | arista.eos: 2.2.0 9 | awx.awx: 19.2.2 10 | azure.azcollection: 1.7.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.2 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 2.3.0 17 | cisco.iosxr: 2.3.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.7.1 27 | community.digitalocean: 1.7.0 28 | community.docker: 1.8.0 29 | community.fortios: 1.0.0 30 | community.general: 3.3.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.3.0 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.3.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.11.0 49 | community.windows: 1.5.0 50 | community.zabbix: 1.3.0 51 | containers.podman: 1.6.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.5.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.10.1 60 | fortinet.fortimanager: 2.1.2 61 | fortinet.fortios: 2.1.1 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.3 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.2.0 70 | junipernetworks.junos: 2.3.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.2.0 74 | netapp.azure: 21.7.0 75 | netapp.cloudmanager: 21.7.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.7.0 78 | netapp.um_info: 21.6.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.1 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.5.3 87 | purestorage.flasharray: 1.8.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.11.1 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.18.0 93 | theforeman.foreman: 2.1.1 94 | vyos.vyos: 2.3.1 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.3.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.3.0 2 | _ansible_base_version: 2.11.3 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.2.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.3.0 7 | ansible.windows: 1.7.0 8 | arista.eos: 2.2.0 9 | awx.awx: 19.2.2 10 | azure.azcollection: 1.7.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.2 15 | cisco.intersight: 1.0.15 16 | cisco.ios: 2.3.0 17 | cisco.iosxr: 2.3.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.4.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.7.1 27 | community.digitalocean: 1.8.0 28 | community.docker: 1.8.0 29 | community.fortios: 1.0.0 30 | community.general: 3.4.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.3.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.1 38 | community.mongodb: 1.2.1 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.4.0 43 | community.proxysql: 1.0.0 44 | community.rabbitmq: 1.0.3 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.12.0 49 | community.windows: 1.5.0 50 | community.zabbix: 1.4.0 51 | containers.podman: 1.6.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.5.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.10.1 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.4 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.2.0 70 | junipernetworks.junos: 2.3.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.8.1 75 | netapp.cloudmanager: 21.8.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.8.1 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.1 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.5.3 87 | purestorage.flasharray: 1.9.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.11.1 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.20.0 93 | theforeman.foreman: 2.1.2 94 | vyos.vyos: 2.4.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.4.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.4.0 2 | _ansible_base_version: 2.11.3 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.3.0 5 | ansible.posix: 1.2.0 6 | ansible.utils: 2.3.1 7 | ansible.windows: 1.7.2 8 | arista.eos: 2.2.0 9 | awx.awx: 19.2.2 10 | azure.azcollection: 1.8.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.2 15 | cisco.intersight: 1.0.16 16 | cisco.ios: 2.3.1 17 | cisco.iosxr: 2.4.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.5.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.8.0 27 | community.digitalocean: 1.8.0 28 | community.docker: 1.9.0 29 | community.fortios: 1.0.0 30 | community.general: 3.5.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.3.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.0 39 | community.mysql: 2.1.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.4.0 43 | community.proxysql: 1.1.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.12.0 49 | community.windows: 1.6.0 50 | community.zabbix: 1.4.0 51 | containers.podman: 1.6.2 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.11.0 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.4.4 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.2.0 70 | junipernetworks.junos: 2.4.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.8.1 75 | netapp.cloudmanager: 21.9.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.9.0 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.1 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.5.4 87 | purestorage.flasharray: 1.10.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.11.1 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.20.0 93 | theforeman.foreman: 2.1.2 94 | vyos.vyos: 2.5.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.5.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.5.0 2 | _ansible_base_version: 2.11.4 3 | amazon.aws: 1.5.0 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.0 7 | ansible.windows: 1.7.2 8 | arista.eos: 2.2.0 9 | awx.awx: 19.2.2 10 | azure.azcollection: 1.9.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.3 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.4.0 17 | cisco.iosxr: 2.4.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.5.1 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.9.2 27 | community.digitalocean: 1.9.0 28 | community.docker: 1.9.1 29 | community.fortios: 1.0.0 30 | community.general: 3.6.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.1 33 | community.hashi_vault: 1.3.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.1 39 | community.mysql: 2.1.1 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.4.0 43 | community.proxysql: 1.2.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.13.0 49 | community.windows: 1.6.0 50 | community.zabbix: 1.4.0 51 | containers.podman: 1.7.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.11.0 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.1 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.5.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.8.1 75 | netapp.cloudmanager: 21.9.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.10.0 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.1 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.0 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.6.2 87 | purestorage.flasharray: 1.10.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.21.1 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.5.1 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.6.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.6.0 2 | _ansible_base_version: 2.11.5 3 | amazon.aws: 1.5.1 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.0 7 | ansible.windows: 1.7.2 8 | arista.eos: 2.2.0 9 | awx.awx: 19.2.2 10 | azure.azcollection: 1.9.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.3 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.4.0 17 | cisco.iosxr: 2.4.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.5.1 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.9.3 27 | community.digitalocean: 1.10.0 28 | community.docker: 1.9.1 29 | community.fortios: 1.0.0 30 | community.general: 3.7.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.3 33 | community.hashi_vault: 1.3.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.1 39 | community.mysql: 2.1.1 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.4.0 43 | community.proxysql: 1.2.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.14.0 49 | community.windows: 1.6.0 50 | community.zabbix: 1.4.0 51 | containers.podman: 1.8.0 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.11.1 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.2 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.5.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.9.0 75 | netapp.cloudmanager: 21.10.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.11.0 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.2 81 | ngine_io.cloudstack: 2.1.0 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.1 85 | openvswitch.openvswitch: 2.0.0 86 | ovirt.ovirt: 1.6.3 87 | purestorage.flasharray: 1.10.0 88 | purestorage.flashblade: 1.6.0 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.22.0 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.5.1 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.7.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.7.0 2 | _ansible_base_version: 2.11.6 3 | amazon.aws: 1.5.1 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.2 7 | ansible.windows: 1.7.3 8 | arista.eos: 2.2.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.9.0 11 | check_point.mgmt: 2.1.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.1.0 14 | cisco.asa: 2.1.0 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.5.0 17 | cisco.iosxr: 2.5.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.7.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.0.0 26 | community.crypto: 1.9.5 27 | community.digitalocean: 1.10.0 28 | community.docker: 1.10.0 29 | community.fortios: 1.0.0 30 | community.general: 3.8.0 31 | community.google: 1.0.0 32 | community.grafana: 1.2.3 33 | community.hashi_vault: 1.3.2 34 | community.hrobot: 1.1.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.1 39 | community.mysql: 2.3.0 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.5.0 43 | community.proxysql: 1.3.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.15.0 49 | community.windows: 1.7.0 50 | community.zabbix: 1.4.0 51 | containers.podman: 1.8.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.11.1 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.2 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.6.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.9.0 75 | netapp.cloudmanager: 21.11.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.12.0 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.1.2 81 | ngine_io.cloudstack: 2.2.1 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.1 85 | openvswitch.openvswitch: 2.0.2 86 | ovirt.ovirt: 1.6.4 87 | purestorage.flasharray: 1.11.0 88 | purestorage.flashblade: 1.7.0 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.23.0 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.6.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.8.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.8.0 2 | _ansible_base_version: 2.11.6 3 | amazon.aws: 1.5.1 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.2 7 | ansible.windows: 1.7.3 8 | arista.eos: 2.2.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.10.0 11 | check_point.mgmt: 2.1.1 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.1.0 14 | cisco.asa: 2.1.0 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.5.0 17 | cisco.iosxr: 2.5.0 18 | cisco.meraki: 2.5.0 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.7.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.1.0 26 | community.crypto: 1.9.6 27 | community.digitalocean: 1.11.0 28 | community.docker: 1.10.0 29 | community.fortios: 1.0.0 30 | community.general: 3.8.1 31 | community.google: 1.0.0 32 | community.grafana: 1.2.3 33 | community.hashi_vault: 1.4.1 34 | community.hrobot: 1.2.0 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.1 39 | community.mysql: 2.3.1 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.5.0 43 | community.proxysql: 1.3.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.1.0 48 | community.vmware: 1.15.0 49 | community.windows: 1.7.0 50 | community.zabbix: 1.5.0 51 | containers.podman: 1.8.1 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.7 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.12.0 60 | fortinet.fortimanager: 2.1.3 61 | fortinet.fortios: 2.1.2 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.2 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.2.4 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.6.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.6.0 74 | netapp.azure: 21.9.0 75 | netapp.cloudmanager: 21.11.0 76 | netapp.elementsw: 21.6.1 77 | netapp.ontap: 21.12.0 78 | netapp.um_info: 21.7.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.3.0 81 | ngine_io.cloudstack: 2.2.2 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.1 85 | openvswitch.openvswitch: 2.0.2 86 | ovirt.ovirt: 1.6.4 87 | purestorage.flasharray: 1.11.0 88 | purestorage.flashblade: 1.7.0 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.23.0 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.6.0 95 | wti.remote: 1.0.1 96 | -------------------------------------------------------------------------------- /4/ansible-4.9.0.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 4.9.0 2 | _ansible_base_version: 2.11.6 3 | amazon.aws: 1.5.1 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.2 7 | ansible.windows: 1.8.0 8 | arista.eos: 2.2.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.10.0 11 | check_point.mgmt: 2.1.1 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.1.0 14 | cisco.asa: 2.1.0 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.5.0 17 | cisco.iosxr: 2.5.0 18 | cisco.meraki: 2.5.0 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.7.1 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 1.5.0 25 | community.azure: 1.1.0 26 | community.crypto: 1.9.7 27 | community.digitalocean: 1.12.0 28 | community.docker: 1.10.1 29 | community.fortios: 1.0.0 30 | community.general: 3.8.2 31 | community.google: 1.0.0 32 | community.grafana: 1.2.3 33 | community.hashi_vault: 1.5.0 34 | community.hrobot: 1.2.1 35 | community.kubernetes: 1.2.1 36 | community.kubevirt: 1.0.0 37 | community.libvirt: 1.0.2 38 | community.mongodb: 1.3.2 39 | community.mysql: 2.3.1 40 | community.network: 3.0.0 41 | community.okd: 1.1.2 42 | community.postgresql: 1.6.0 43 | community.proxysql: 1.3.0 44 | community.rabbitmq: 1.1.0 45 | community.routeros: 1.2.0 46 | community.skydive: 1.0.0 47 | community.sops: 1.2.0 48 | community.vmware: 1.16.0 49 | community.windows: 1.8.0 50 | community.zabbix: 1.5.0 51 | containers.podman: 1.8.2 52 | cyberark.conjur: 1.1.0 53 | cyberark.pas: 1.0.13 54 | dellemc.enterprise_sonic: 1.1.0 55 | dellemc.openmanage: 3.6.0 56 | dellemc.os10: 1.1.1 57 | dellemc.os6: 1.0.7 58 | dellemc.os9: 1.0.4 59 | f5networks.f5_modules: 1.12.0 60 | fortinet.fortimanager: 2.1.4 61 | fortinet.fortios: 2.1.3 62 | frr.frr: 1.0.3 63 | gluster.gluster: 1.0.2 64 | google.cloud: 1.0.2 65 | hetzner.hcloud: 1.6.0 66 | hpe.nimble: 1.1.3 67 | ibm.qradar: 1.0.3 68 | infinidat.infinibox: 1.3.0 69 | inspur.sm: 1.3.0 70 | junipernetworks.junos: 2.6.0 71 | kubernetes.core: 1.2.1 72 | mellanox.onyx: 1.0.0 73 | netapp.aws: 21.7.0 74 | netapp.azure: 21.10.0 75 | netapp.cloudmanager: 21.12.1 76 | netapp.elementsw: 21.7.0 77 | netapp.ontap: 21.13.1 78 | netapp.um_info: 21.8.0 79 | netapp_eseries.santricity: 1.2.13 80 | netbox.netbox: 3.3.0 81 | ngine_io.cloudstack: 2.2.2 82 | ngine_io.exoscale: 1.0.0 83 | ngine_io.vultr: 1.1.0 84 | openstack.cloud: 1.5.3 85 | openvswitch.openvswitch: 2.0.2 86 | ovirt.ovirt: 1.6.5 87 | purestorage.flasharray: 1.11.0 88 | purestorage.flashblade: 1.8.1 89 | sensu.sensu_go: 1.12.0 90 | servicenow.servicenow: 1.0.6 91 | splunk.es: 1.0.2 92 | t_systems_mms.icinga_director: 1.25.0 93 | theforeman.foreman: 2.2.0 94 | vyos.vyos: 2.6.0 95 | wti.remote: 1.0.3 96 | -------------------------------------------------------------------------------- /4/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.intersight 14 | cisco.ios 15 | cisco.iosxr 16 | cisco.meraki 17 | cisco.mso 18 | cisco.nso 19 | cisco.nxos 20 | cisco.ucs 21 | cloudscale_ch.cloud 22 | community.aws 23 | community.azure 24 | community.crypto 25 | community.digitalocean 26 | community.docker 27 | community.fortios 28 | community.general 29 | community.google 30 | community.grafana 31 | community.hashi_vault 32 | community.hrobot 33 | community.kubernetes 34 | community.kubevirt 35 | community.libvirt 36 | community.mongodb 37 | community.mysql 38 | community.network 39 | community.okd 40 | community.postgresql 41 | community.proxysql 42 | community.rabbitmq 43 | community.routeros 44 | community.skydive 45 | community.sops 46 | community.vmware 47 | community.windows 48 | community.zabbix 49 | containers.podman 50 | cyberark.conjur 51 | cyberark.pas 52 | dellemc.enterprise_sonic 53 | dellemc.openmanage 54 | dellemc.os10 55 | dellemc.os6 56 | dellemc.os9 57 | f5networks.f5_modules 58 | fortinet.fortimanager 59 | fortinet.fortios 60 | frr.frr 61 | gluster.gluster 62 | google.cloud 63 | hetzner.hcloud 64 | hpe.nimble 65 | ibm.qradar 66 | infinidat.infinibox 67 | #infobox.nios_modules # NOT FOR 2.10 https://github.com/infobloxopen/infoblox-ansible/issues/7 68 | inspur.sm 69 | junipernetworks.junos 70 | # community.kubernetes shall be renamed to kubernetes.core, they are already the same build artifact 71 | # https://github.com/ansible-collections/community.kubernetes/issues/221 72 | kubernetes.core 73 | mellanox.onyx 74 | netapp.aws 75 | netapp.azure 76 | netapp.cloudmanager 77 | netapp.elementsw 78 | netapp_eseries.santricity 79 | netapp.ontap 80 | netapp.um_info 81 | netbox.netbox 82 | ngine_io.cloudstack 83 | ngine_io.exoscale 84 | ngine_io.vultr 85 | openstack.cloud 86 | openvswitch.openvswitch 87 | ovirt.ovirt 88 | purestorage.flasharray 89 | purestorage.flashblade 90 | sensu.sensu_go 91 | servicenow.servicenow 92 | splunk.es 93 | theforeman.foreman 94 | t_systems_mms.icinga_director 95 | vyos.vyos 96 | wti.remote 97 | -------------------------------------------------------------------------------- /4/collection-meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | ansible.utils: 4 | maintainers: 5 | - cidrblock 6 | - ganeshrn 7 | - pabelanger 8 | community.sops: 9 | maintainers: 10 | - endorama 11 | cyberark.conjur: 12 | changelog-url: https://github.com/cyberark/ansible-conjur-collection/blob/master/CHANGELOG.md 13 | dellemc.openmanage: 14 | changelog-url: https://github.com/dell/dellemc-openmanage-ansible-modules/blob/collections/CHANGELOG.rst 15 | maintainers: 16 | - rajeevarakkal 17 | inspur.sm: 18 | maintainers: 19 | - ISIB-Group 20 | kubernetes.core: 21 | maintainers: 22 | - jillr 23 | - akasurde 24 | - gravesm 25 | sensu.sensu_go: 26 | maintainers: 27 | - tadeboro 28 | - mancabizjak 29 | t_systems_mms.icinga_director: 30 | changelog-url: https://github.com/T-Systems-MMS/ansible-collection-icinga-director/blob/master/CHANGELOG.md 31 | maintainers: 32 | - rndmh3ro 33 | - schurzi 34 | dellemc.enterprise_sonic: 35 | maintainers: 36 | - javeedf 37 | hpe.nimble: 38 | maintainers: 39 | - ar-india 40 | - datamattsson 41 | netapp.azure: 42 | maintainers: 43 | - carchi8py 44 | - lonico 45 | netapp.cloudmanager: 46 | maintainers: 47 | - carchi8py 48 | - lonico 49 | netapp.um_info: 50 | maintainers: 51 | - carchi8py 52 | - lonico 53 | -------------------------------------------------------------------------------- /5/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../4/ansible-4.0.0.deps -------------------------------------------------------------------------------- /5/ansible-5.0.0a1.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 5.0.0a1 2 | _ansible_base_version: 2.12.0b1 3 | amazon.aws: 2.0.0 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.1 7 | ansible.windows: 1.7.3 8 | arista.eos: 3.1.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.9.0 11 | check_point.mgmt: 2.0.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.0.0 14 | cisco.asa: 2.0.3 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.5.0 17 | cisco.iosxr: 2.5.0 18 | cisco.meraki: 2.4.2 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.7.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 2.0.0 25 | community.azure: 1.0.0 26 | community.ciscosmb: 1.0.4 27 | community.crypto: 1.9.4 28 | community.digitalocean: 1.10.0 29 | community.dns: 2.0.0 30 | community.docker: 1.10.0 31 | community.fortios: 1.0.0 32 | community.general: 3.7.0 33 | community.google: 1.0.0 34 | community.grafana: 1.2.3 35 | community.hashi_vault: 1.3.2 36 | community.hrobot: 1.1.1 37 | community.kubernetes: 2.0.0 38 | community.kubevirt: 1.0.0 39 | community.libvirt: 1.0.2 40 | community.mongodb: 1.3.1 41 | community.mysql: 2.3.0 42 | community.network: 3.0.0 43 | community.okd: 2.0.1 44 | community.postgresql: 1.5.0 45 | community.proxysql: 1.3.0 46 | community.rabbitmq: 1.1.0 47 | community.routeros: 2.0.0-a1 48 | community.skydive: 1.0.0 49 | community.sops: 1.1.0 50 | community.vmware: 1.14.0 51 | community.windows: 1.7.0 52 | community.zabbix: 1.4.0 53 | containers.podman: 1.8.1 54 | cyberark.conjur: 1.1.0 55 | cyberark.pas: 1.0.7 56 | dellemc.enterprise_sonic: 1.1.0 57 | dellemc.openmanage: 4.1.0 58 | dellemc.os10: 1.1.1 59 | dellemc.os6: 1.0.7 60 | dellemc.os9: 1.0.4 61 | f5networks.f5_modules: 1.11.1 62 | fortinet.fortimanager: 2.1.3 63 | fortinet.fortios: 2.1.2 64 | frr.frr: 1.0.3 65 | gluster.gluster: 1.0.2 66 | google.cloud: 1.0.2 67 | hetzner.hcloud: 1.6.0 68 | hpe.nimble: 1.1.3 69 | ibm.qradar: 1.0.3 70 | infinidat.infinibox: 1.2.4 71 | inspur.sm: 1.3.0 72 | junipernetworks.junos: 2.6.0 73 | kubernetes.core: 2.2.0 74 | mellanox.onyx: 1.0.0 75 | netapp.aws: 21.6.0 76 | netapp.azure: 21.9.0 77 | netapp.cloudmanager: 21.10.0 78 | netapp.elementsw: 21.6.1 79 | netapp.ontap: 21.11.0 80 | netapp.um_info: 21.7.0 81 | netapp_eseries.santricity: 1.2.13 82 | netbox.netbox: 3.1.2 83 | ngine_io.cloudstack: 2.2.1 84 | ngine_io.exoscale: 1.0.0 85 | ngine_io.vultr: 1.1.0 86 | openstack.cloud: 1.5.1 87 | openvswitch.openvswitch: 2.0.2 88 | ovirt.ovirt: 1.6.4 89 | purestorage.flasharray: 1.11.0 90 | purestorage.flashblade: 1.7.0 91 | sensu.sensu_go: 1.12.0 92 | servicenow.servicenow: 1.0.6 93 | splunk.es: 1.0.2 94 | t_systems_mms.icinga_director: 1.23.0 95 | theforeman.foreman: 2.2.0 96 | vyos.vyos: 2.6.0 97 | wti.remote: 1.0.1 98 | -------------------------------------------------------------------------------- /5/ansible-5.0.0a2.deps: -------------------------------------------------------------------------------- 1 | _ansible_version: 5.0.0a2 2 | _ansible_base_version: 2.12.0rc1 3 | amazon.aws: 2.0.0 4 | ansible.netcommon: 2.4.0 5 | ansible.posix: 1.3.0 6 | ansible.utils: 2.4.2 7 | ansible.windows: 1.7.3 8 | arista.eos: 3.1.0 9 | awx.awx: 19.4.0 10 | azure.azcollection: 1.9.0 11 | check_point.mgmt: 2.1.0 12 | chocolatey.chocolatey: 1.1.0 13 | cisco.aci: 2.1.0 14 | cisco.asa: 2.1.0 15 | cisco.intersight: 1.0.17 16 | cisco.ios: 2.5.0 17 | cisco.iosxr: 2.5.0 18 | cisco.meraki: 2.5.0 19 | cisco.mso: 1.2.0 20 | cisco.nso: 1.0.3 21 | cisco.nxos: 2.7.0 22 | cisco.ucs: 1.6.0 23 | cloudscale_ch.cloud: 2.2.0 24 | community.aws: 2.0.0 25 | community.azure: 1.0.0 26 | community.ciscosmb: 1.0.4 27 | community.crypto: 1.9.5 28 | community.digitalocean: 1.10.0 29 | community.dns: 2.0.1 30 | community.docker: 1.10.0 31 | community.fortios: 1.0.0 32 | community.general: 3.8.0 33 | community.google: 1.0.0 34 | community.grafana: 1.2.3 35 | community.hashi_vault: 1.3.2 36 | community.hrobot: 1.1.1 37 | community.kubernetes: 2.0.0 38 | community.kubevirt: 1.0.0 39 | community.libvirt: 1.0.2 40 | community.mongodb: 1.3.1 41 | community.mysql: 2.3.1 42 | community.network: 3.0.0 43 | community.okd: 2.0.1 44 | community.postgresql: 1.5.0 45 | community.proxysql: 1.3.0 46 | community.rabbitmq: 1.1.0 47 | community.routeros: 2.0.0-a2 48 | community.skydive: 1.0.0 49 | community.sops: 1.1.0 50 | community.vmware: 1.15.0 51 | community.windows: 1.7.0 52 | community.zabbix: 1.4.0 53 | containers.podman: 1.8.1 54 | cyberark.conjur: 1.1.0 55 | cyberark.pas: 1.0.7 56 | dellemc.enterprise_sonic: 1.1.0 57 | dellemc.openmanage: 4.1.0 58 | dellemc.os10: 1.1.1 59 | dellemc.os6: 1.0.7 60 | dellemc.os9: 1.0.4 61 | f5networks.f5_modules: 1.11.1 62 | fortinet.fortimanager: 2.1.3 63 | fortinet.fortios: 2.1.2 64 | frr.frr: 1.0.3 65 | gluster.gluster: 1.0.2 66 | google.cloud: 1.0.2 67 | hetzner.hcloud: 1.6.0 68 | hpe.nimble: 1.1.3 69 | ibm.qradar: 1.0.3 70 | infinidat.infinibox: 1.2.4 71 | inspur.sm: 1.3.0 72 | junipernetworks.junos: 2.6.0 73 | kubernetes.core: 2.2.0 74 | mellanox.onyx: 1.0.0 75 | netapp.aws: 21.6.0 76 | netapp.azure: 21.9.0 77 | netapp.cloudmanager: 21.11.0 78 | netapp.elementsw: 21.6.1 79 | netapp.ontap: 21.12.0 80 | netapp.um_info: 21.7.0 81 | netapp_eseries.santricity: 1.2.13 82 | netbox.netbox: 3.2.0 83 | ngine_io.cloudstack: 2.2.1 84 | ngine_io.exoscale: 1.0.0 85 | ngine_io.vultr: 1.1.0 86 | openstack.cloud: 1.5.1 87 | openvswitch.openvswitch: 2.0.2 88 | ovirt.ovirt: 1.6.4 89 | purestorage.flasharray: 1.11.0 90 | purestorage.flashblade: 1.7.0 91 | sensu.sensu_go: 1.12.0 92 | servicenow.servicenow: 1.0.6 93 | splunk.es: 1.0.2 94 | t_systems_mms.icinga_director: 1.23.0 95 | theforeman.foreman: 2.2.0 96 | vyos.vyos: 2.6.0 97 | wti.remote: 1.0.1 98 | -------------------------------------------------------------------------------- /5/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nso 21 | cisco.nxos 22 | cisco.ucs 23 | cloud.common 24 | cloudscale_ch.cloud 25 | community.aws 26 | community.azure 27 | community.ciscosmb 28 | community.crypto 29 | community.digitalocean 30 | community.dns 31 | community.docker 32 | community.fortios 33 | community.general 34 | community.google 35 | community.grafana 36 | community.hashi_vault 37 | community.hrobot 38 | community.kubernetes 39 | community.kubevirt 40 | community.libvirt 41 | community.mongodb 42 | community.mysql 43 | community.network 44 | community.okd 45 | community.postgresql 46 | community.proxysql 47 | community.rabbitmq 48 | community.routeros 49 | community.sap 50 | community.sap_libs 51 | community.skydive 52 | community.sops 53 | community.vmware 54 | community.windows 55 | community.zabbix 56 | containers.podman 57 | cyberark.conjur 58 | cyberark.pas 59 | dellemc.enterprise_sonic 60 | dellemc.openmanage 61 | dellemc.os10 62 | dellemc.os6 63 | dellemc.os9 64 | f5networks.f5_modules 65 | fortinet.fortimanager 66 | fortinet.fortios 67 | frr.frr 68 | gluster.gluster 69 | google.cloud 70 | hetzner.hcloud 71 | hpe.nimble 72 | ibm.qradar 73 | infinidat.infinibox 74 | infoblox.nios_modules 75 | inspur.sm 76 | junipernetworks.junos 77 | # community.kubernetes shall be renamed to kubernetes.core, they are already the same build artifact 78 | # https://github.com/ansible-collections/community.kubernetes/issues/221 79 | kubernetes.core 80 | mellanox.onyx 81 | netapp.aws 82 | netapp.azure 83 | netapp.cloudmanager 84 | netapp.elementsw 85 | netapp_eseries.santricity 86 | netapp.ontap 87 | netapp.storagegrid 88 | netapp.um_info 89 | netbox.netbox 90 | ngine_io.cloudstack 91 | ngine_io.exoscale 92 | ngine_io.vultr 93 | openstack.cloud 94 | openvswitch.openvswitch 95 | ovirt.ovirt 96 | purestorage.flasharray 97 | purestorage.flashblade 98 | sensu.sensu_go 99 | servicenow.servicenow 100 | splunk.es 101 | theforeman.foreman 102 | t_systems_mms.icinga_director 103 | vmware.vmware_rest 104 | vyos.vyos 105 | wti.remote 106 | -------------------------------------------------------------------------------- /5/collection-meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | ansible.utils: 4 | maintainers: 5 | - cidrblock 6 | - ganeshrn 7 | - pabelanger 8 | community.sops: 9 | maintainers: 10 | - endorama 11 | cyberark.conjur: 12 | changelog-url: https://github.com/cyberark/ansible-conjur-collection/blob/master/CHANGELOG.md 13 | dellemc.openmanage: 14 | changelog-url: https://github.com/dell/dellemc-openmanage-ansible-modules/blob/collections/CHANGELOG.rst 15 | maintainers: 16 | - rajeevarakkal 17 | inspur.sm: 18 | maintainers: 19 | - ISIB-Group 20 | kubernetes.core: 21 | maintainers: 22 | - jillr 23 | - akasurde 24 | - gravesm 25 | sensu.sensu_go: 26 | maintainers: 27 | - tadeboro 28 | - mancabizjak 29 | t_systems_mms.icinga_director: 30 | changelog-url: https://github.com/T-Systems-MMS/ansible-collection-icinga-director/blob/master/CHANGELOG.md 31 | maintainers: 32 | - rndmh3ro 33 | - schurzi 34 | dellemc.enterprise_sonic: 35 | maintainers: 36 | - javeedf 37 | hpe.nimble: 38 | maintainers: 39 | - ar-india 40 | - datamattsson 41 | netapp.azure: 42 | maintainers: 43 | - carchi8py 44 | - lonico 45 | netapp.cloudmanager: 46 | maintainers: 47 | - carchi8py 48 | - lonico 49 | netapp.um_info: 50 | maintainers: 51 | - carchi8py 52 | - lonico 53 | community.ciscosmb: 54 | maintainers: 55 | - qaxi 56 | community.dns: 57 | maintainers: 58 | - felixfontein 59 | cloud.common: 60 | maintainers: 61 | - Akasurde 62 | - abikouo 63 | - goneri 64 | - jillr 65 | infoblox.nios_modules: 66 | maintainers: 67 | - anagha-infoblox 68 | netapp.storagegrid: 69 | maintainers: 70 | - carchi8py 71 | - jkandati 72 | - joshedmonds 73 | cisco.ise: 74 | maintainers: 75 | - wastorga 76 | - racampos 77 | - jbogarin 78 | community.sap: 79 | maintainers: 80 | - rainerleber 81 | community.sap_libs: 82 | maintainers: 83 | - rainerleber 84 | vmware.vmware_rest: 85 | maintainers: 86 | - goneri 87 | cisco.dnac: 88 | maintainers: 89 | - racampos 90 | - wastorga 91 | -------------------------------------------------------------------------------- /6/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../5/ansible-5.0.0.deps -------------------------------------------------------------------------------- /6/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nso 21 | cisco.nxos 22 | cisco.ucs 23 | cloud.common 24 | cloudscale_ch.cloud 25 | community.aws 26 | community.azure 27 | community.ciscosmb 28 | community.crypto 29 | community.digitalocean 30 | community.dns 31 | community.docker 32 | community.fortios 33 | community.general 34 | community.google 35 | community.grafana 36 | community.hashi_vault 37 | community.hrobot 38 | community.libvirt 39 | community.mongodb 40 | community.mysql 41 | community.network 42 | community.okd 43 | community.postgresql 44 | community.proxysql 45 | community.rabbitmq 46 | community.routeros 47 | community.sap 48 | community.sap_libs 49 | community.skydive 50 | community.sops 51 | community.vmware 52 | community.windows 53 | community.zabbix 54 | containers.podman 55 | cyberark.conjur 56 | cyberark.pas 57 | dellemc.enterprise_sonic 58 | dellemc.openmanage 59 | dellemc.os10 60 | dellemc.os6 61 | dellemc.os9 62 | f5networks.f5_modules 63 | fortinet.fortimanager 64 | fortinet.fortios 65 | frr.frr 66 | gluster.gluster 67 | google.cloud 68 | hetzner.hcloud 69 | hpe.nimble 70 | ibm.qradar 71 | ibm.spectrum_virtualize 72 | infinidat.infinibox 73 | infoblox.nios_modules 74 | inspur.ispim 75 | inspur.sm 76 | junipernetworks.junos 77 | kubernetes.core 78 | lowlydba.sqlserver 79 | mellanox.onyx 80 | netapp.aws 81 | netapp.azure 82 | netapp.cloudmanager 83 | netapp.elementsw 84 | netapp_eseries.santricity 85 | netapp.ontap 86 | netapp.storagegrid 87 | netapp.um_info 88 | netbox.netbox 89 | ngine_io.cloudstack 90 | ngine_io.exoscale 91 | ngine_io.vultr 92 | openstack.cloud 93 | openvswitch.openvswitch 94 | ovirt.ovirt 95 | purestorage.flasharray 96 | purestorage.flashblade 97 | purestorage.fusion 98 | sensu.sensu_go 99 | servicenow.servicenow 100 | splunk.es 101 | theforeman.foreman 102 | t_systems_mms.icinga_director 103 | vmware.vmware_rest 104 | vultr.cloud 105 | vyos.vyos 106 | wti.remote 107 | -------------------------------------------------------------------------------- /6/collection-meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | ansible.utils: 4 | maintainers: 5 | - cidrblock 6 | - ganeshrn 7 | - pabelanger 8 | community.sops: 9 | maintainers: 10 | - endorama 11 | cyberark.conjur: 12 | changelog-url: https://github.com/cyberark/ansible-conjur-collection/blob/master/CHANGELOG.md 13 | dellemc.openmanage: 14 | changelog-url: https://github.com/dell/dellemc-openmanage-ansible-modules/blob/collections/CHANGELOG.rst 15 | maintainers: 16 | - rajeevarakkal 17 | inspur.ispim: 18 | maintainers: 19 | - ispim 20 | inspur.sm: 21 | maintainers: 22 | - ISIB-Group 23 | kubernetes.core: 24 | maintainers: 25 | - jillr 26 | - akasurde 27 | - gravesm 28 | sensu.sensu_go: 29 | maintainers: 30 | - tadeboro 31 | - mancabizjak 32 | t_systems_mms.icinga_director: 33 | changelog-url: https://github.com/T-Systems-MMS/ansible-collection-icinga-director/blob/master/CHANGELOG.md 34 | maintainers: 35 | - rndmh3ro 36 | - schurzi 37 | dellemc.enterprise_sonic: 38 | maintainers: 39 | - javeedf 40 | hpe.nimble: 41 | maintainers: 42 | - ar-india 43 | - datamattsson 44 | netapp.azure: 45 | maintainers: 46 | - carchi8py 47 | - lonico 48 | netapp.cloudmanager: 49 | maintainers: 50 | - carchi8py 51 | - lonico 52 | netapp.um_info: 53 | maintainers: 54 | - carchi8py 55 | - lonico 56 | community.ciscosmb: 57 | maintainers: 58 | - qaxi 59 | community.dns: 60 | maintainers: 61 | - felixfontein 62 | cloud.common: 63 | maintainers: 64 | - Akasurde 65 | - abikouo 66 | - goneri 67 | - jillr 68 | infoblox.nios_modules: 69 | maintainers: 70 | - anagha-infoblox 71 | netapp.storagegrid: 72 | maintainers: 73 | - carchi8py 74 | - jkandati 75 | - joshedmonds 76 | cisco.ise: 77 | maintainers: 78 | - wastorga 79 | - racampos 80 | - jbogarin 81 | community.sap: 82 | maintainers: 83 | - rainerleber 84 | community.sap_libs: 85 | maintainers: 86 | - rainerleber 87 | vmware.vmware_rest: 88 | maintainers: 89 | - goneri 90 | cisco.dnac: 91 | maintainers: 92 | - racampos 93 | - wastorga 94 | purestorage.fusion: 95 | maintainers: 96 | - sdodsley 97 | ibm.spectrum_virtualize: 98 | maintainers: 99 | - Shilpi-J 100 | vultr.cloud: 101 | maintainers: 102 | - resmo 103 | - optik-aper 104 | lowlydba.sqlserver: 105 | maintainers: 106 | - lowlydba 107 | -------------------------------------------------------------------------------- /7/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../6/ansible-6.0.0.deps -------------------------------------------------------------------------------- /7/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nso 21 | cisco.nxos 22 | cisco.ucs 23 | cloud.common 24 | cloudscale_ch.cloud 25 | community.aws 26 | community.azure 27 | community.ciscosmb 28 | community.crypto 29 | community.digitalocean 30 | community.dns 31 | community.docker 32 | community.fortios 33 | community.general 34 | community.google 35 | community.grafana 36 | community.hashi_vault 37 | community.hrobot 38 | community.libvirt 39 | community.mongodb 40 | community.mysql 41 | community.network 42 | community.okd 43 | community.postgresql 44 | community.proxysql 45 | community.rabbitmq 46 | community.routeros 47 | community.sap 48 | community.sap_libs 49 | community.skydive 50 | community.sops 51 | community.vmware 52 | community.windows 53 | community.zabbix 54 | containers.podman 55 | cyberark.conjur 56 | cyberark.pas 57 | dellemc.enterprise_sonic 58 | dellemc.openmanage 59 | dellemc.os10 60 | dellemc.os6 61 | dellemc.os9 62 | dellemc.powerflex 63 | dellemc.unity 64 | f5networks.f5_modules 65 | fortinet.fortimanager 66 | fortinet.fortios 67 | frr.frr 68 | gluster.gluster 69 | google.cloud 70 | grafana.grafana 71 | hetzner.hcloud 72 | hpe.nimble 73 | ibm.qradar 74 | ibm.spectrum_virtualize 75 | infinidat.infinibox 76 | infoblox.nios_modules 77 | inspur.ispim 78 | inspur.sm 79 | junipernetworks.junos 80 | kubernetes.core 81 | lowlydba.sqlserver 82 | mellanox.onyx 83 | microsoft.ad 84 | netapp.aws 85 | netapp.azure 86 | netapp.cloudmanager 87 | netapp.elementsw 88 | netapp_eseries.santricity 89 | netapp.ontap 90 | netapp.storagegrid 91 | netapp.um_info 92 | netbox.netbox 93 | ngine_io.cloudstack 94 | ngine_io.exoscale 95 | ngine_io.vultr 96 | openstack.cloud 97 | openvswitch.openvswitch 98 | ovirt.ovirt 99 | purestorage.flasharray 100 | purestorage.flashblade 101 | purestorage.fusion 102 | sensu.sensu_go 103 | splunk.es 104 | theforeman.foreman 105 | t_systems_mms.icinga_director 106 | vmware.vmware_rest 107 | vultr.cloud 108 | vyos.vyos 109 | wti.remote 110 | -------------------------------------------------------------------------------- /7/validate-tags-ignores: -------------------------------------------------------------------------------- 1 | # https://github.com/ansible-community/ansible-build-data/issues/190 2 | # This will be removed in Ansible 9 3 | cisco.nso 4 | # This has been removed in Ansible 8 5 | mellanox.onyx 6 | -------------------------------------------------------------------------------- /8/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../7/ansible-7.0.0.deps -------------------------------------------------------------------------------- /8/ansible-8.constraints: -------------------------------------------------------------------------------- 1 | # cyberark.conjur 1.3.1 no longer is compatible with Python 3.9, which is used for the bytecompile test in antsibull-build for Ansible 8, 2 | # and happens to be the minimum required controller Python version supported by ansible-core 2.15, on which Ansible 8 is based. 3 | cyberark.conjur: <1.3.1 4 | 5 | # cisco.dnac 6.32.0 needs ansible.utils >= 6.0 6 | cisco.dnac: <6.32.0 7 | -------------------------------------------------------------------------------- /8/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nso 21 | cisco.nxos 22 | cisco.ucs 23 | cloud.common 24 | cloudscale_ch.cloud 25 | community.aws 26 | community.azure 27 | community.ciscosmb 28 | community.crypto 29 | community.digitalocean 30 | community.dns 31 | community.docker 32 | community.fortios 33 | community.general 34 | community.google 35 | community.grafana 36 | community.hashi_vault 37 | community.hrobot 38 | community.libvirt 39 | community.mongodb 40 | community.mysql 41 | community.network 42 | community.okd 43 | community.postgresql 44 | community.proxysql 45 | community.rabbitmq 46 | community.routeros 47 | community.sap 48 | community.sap_libs 49 | community.skydive 50 | community.sops 51 | community.vmware 52 | community.windows 53 | community.zabbix 54 | containers.podman 55 | cyberark.conjur 56 | cyberark.pas 57 | dellemc.enterprise_sonic 58 | dellemc.openmanage 59 | dellemc.powerflex 60 | dellemc.unity 61 | f5networks.f5_modules 62 | fortinet.fortimanager 63 | fortinet.fortios 64 | frr.frr 65 | gluster.gluster 66 | google.cloud 67 | grafana.grafana 68 | hetzner.hcloud 69 | hpe.nimble 70 | ibm.qradar 71 | ibm.spectrum_virtualize 72 | ibm.storage_virtualize 73 | infinidat.infinibox 74 | infoblox.nios_modules 75 | inspur.ispim 76 | inspur.sm 77 | junipernetworks.junos 78 | kubernetes.core 79 | lowlydba.sqlserver 80 | microsoft.ad 81 | netapp.aws 82 | netapp.azure 83 | netapp.cloudmanager 84 | netapp.elementsw 85 | netapp_eseries.santricity 86 | netapp.ontap 87 | netapp.storagegrid 88 | netapp.um_info 89 | netbox.netbox 90 | ngine_io.cloudstack 91 | ngine_io.exoscale 92 | ngine_io.vultr 93 | openstack.cloud 94 | openvswitch.openvswitch 95 | ovirt.ovirt 96 | purestorage.flasharray 97 | purestorage.flashblade 98 | purestorage.fusion 99 | sensu.sensu_go 100 | servicenow.servicenow 101 | splunk.es 102 | theforeman.foreman 103 | t_systems_mms.icinga_director 104 | telekom_mms.icinga_director 105 | vmware.vmware_rest 106 | vultr.cloud 107 | vyos.vyos 108 | wti.remote 109 | -------------------------------------------------------------------------------- /8/validate-tags-ignores: -------------------------------------------------------------------------------- 1 | # https://github.com/ansible-community/ansible-build-data/issues/190 2 | # This will be removed in Ansible 9 3 | cisco.nso 4 | -------------------------------------------------------------------------------- /9/ancestor.deps: -------------------------------------------------------------------------------- 1 | ../8/ansible-8.0.0.deps -------------------------------------------------------------------------------- /9/ansible-9.constraints: -------------------------------------------------------------------------------- 1 | # cisco.dnac 6.32.0 needs ansible.utils >= 6.0 2 | cisco.dnac: <6.32.0 3 | -------------------------------------------------------------------------------- /9/ansible.in: -------------------------------------------------------------------------------- 1 | amazon.aws 2 | ansible.netcommon 3 | ansible.posix 4 | ansible.utils 5 | ansible.windows 6 | arista.eos 7 | awx.awx 8 | azure.azcollection 9 | check_point.mgmt 10 | chocolatey.chocolatey 11 | cisco.aci 12 | cisco.asa 13 | cisco.dnac 14 | cisco.intersight 15 | cisco.ios 16 | cisco.iosxr 17 | cisco.ise 18 | cisco.meraki 19 | cisco.mso 20 | cisco.nxos 21 | cisco.ucs 22 | cloud.common 23 | cloudscale_ch.cloud 24 | community.aws 25 | community.azure 26 | community.ciscosmb 27 | community.crypto 28 | community.digitalocean 29 | community.dns 30 | community.docker 31 | community.general 32 | community.grafana 33 | community.hashi_vault 34 | community.hrobot 35 | community.library_inventory_filtering_v1 36 | community.libvirt 37 | community.mongodb 38 | community.mysql 39 | community.network 40 | community.okd 41 | community.postgresql 42 | community.proxysql 43 | community.rabbitmq 44 | community.routeros 45 | community.sap 46 | community.sap_libs 47 | community.sops 48 | community.vmware 49 | community.windows 50 | community.zabbix 51 | containers.podman 52 | cyberark.conjur 53 | cyberark.pas 54 | dellemc.enterprise_sonic 55 | dellemc.openmanage 56 | dellemc.powerflex 57 | dellemc.unity 58 | f5networks.f5_modules 59 | fortinet.fortimanager 60 | fortinet.fortios 61 | frr.frr 62 | gluster.gluster 63 | google.cloud 64 | grafana.grafana 65 | hetzner.hcloud 66 | hpe.nimble 67 | ibm.qradar 68 | ibm.spectrum_virtualize 69 | ibm.storage_virtualize 70 | ieisystem.inmanage 71 | infinidat.infinibox 72 | infoblox.nios_modules 73 | inspur.ispim 74 | inspur.sm 75 | junipernetworks.junos 76 | kaytus.ksmanage 77 | kubernetes.core 78 | lowlydba.sqlserver 79 | microsoft.ad 80 | netapp.aws 81 | netapp.azure 82 | netapp.cloudmanager 83 | netapp.elementsw 84 | netapp_eseries.santricity 85 | netapp.ontap 86 | netapp.storagegrid 87 | netapp.um_info 88 | netbox.netbox 89 | ngine_io.cloudstack 90 | ngine_io.exoscale 91 | openstack.cloud 92 | openvswitch.openvswitch 93 | ovirt.ovirt 94 | purestorage.flasharray 95 | purestorage.flashblade 96 | purestorage.fusion 97 | sensu.sensu_go 98 | splunk.es 99 | theforeman.foreman 100 | t_systems_mms.icinga_director 101 | telekom_mms.icinga_director 102 | vmware.vmware 103 | vmware.vmware_rest 104 | vultr.cloud 105 | vyos.vyos 106 | wti.remote 107 | -------------------------------------------------------------------------------- /9/validate-tags-ignores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/ansible-build-data/d5f016cfcad735f0870e9a20de62143e41d0a7a4/9/validate-tags-ignores -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs 2 | mkdocs-ansible 3 | -------------------------------------------------------------------------------- /docs/CONVENTIONS.md: -------------------------------------------------------------------------------- 1 | # Conventions 2 | 3 | - The docs in this directory should be written in Markdown. 4 | - The docs in this directory should follow the [Semantic Line Breaks][1] standard. 5 | - The docs in this directory should follow the [Ansible documentation style guide][2] 6 | when applicable. 7 | - The docs in this directory should use `Title Case` for page headings and 8 | `Sentence case` for subheadings. 9 | - Make sure to add new docs to the `nav:` config in `mkdocs.yml`. 10 | 11 | [1]: https://sembr.org/ 12 | [2]: https://docs.ansible.com/ansible/latest/dev_guide/style_guide/basic_rules.html 13 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | --- 2 | site_name: Ansible Package Release Management 3 | site_url: https://ansible.readthedocs.io/projects/ansible-build-data 4 | repo_url: https://github.com/ansible-community/ansible-build-data 5 | theme: 6 | name: ansible 7 | features: 8 | - content.code.copy 9 | - navigation.footer 10 | # NOTE(gotmax23): I dislike web fonts in general and the Red Hat fonts from 11 | # the Ansible theme in particular 12 | font: false 13 | # REUSE-IgnoreStart 14 | copyright: > 15 | Copyright (C) 2023 Ansible Project Authors | 16 | SPDX-License-Identifier: GPL-3.0-or-later 17 | # REUSE-IgnoreEnd 18 | markdown_extensions: 19 | # Builtin 20 | - admonition 21 | - footnotes 22 | - toc: 23 | permalink: true 24 | # pymdownx 25 | - pymdownx.highlight: 26 | anchor_linenums: true 27 | - pymdownx.superfences 28 | nav: 29 | - Ansible Build Data: README.md 30 | - Automated Ansible Release Process: automated-process.md 31 | - Manual Ansible Release Process: release-process.md 32 | - policies.md 33 | - new-ansible.md 34 | -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- 1 | # GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | # SPDX-FileCopyrightText: 2023 Maxwell G