This Ansible collection allows for easy interaction with an EDA Controller server via Ansible playbooks.
This collection only supports EDA/AAP 2.4. For AAP 2.5+ take a look at our new collection that allows you to manage your whole AAP configuration in one place. We will try and continue supporting this collection until AAP 2.4 support ends (currently set for 12/31/2025)lifecycle.
Collection Name | Purpose |
---|---|
awx.awx/Ansible.controller repo | Automation Controller modules |
Ansible Hub Configuration | Automation Hub configuration |
Collection Name | Purpose |
---|---|
Controller Configuration | Automation Controller configuration |
EDA Controller Configuration | EDA Controller configuration |
EE Utilities | Execution Environment creation utilities |
AAP installation Utilities | Ansible Automation Platform utilities |
AAP Configuration Template | Configuration Template for this suite |
Click the Content
button to see the list of content included in this collection.
You can install the ansible EDA Controller collection with the Ansible Galaxy CLI:
ansible-galaxy collection install infra.eda_configuration
You can also include it in a requirements.yml
file and install it with ansible-galaxy collection install -r requirements.yml
, using the format:
---
collections:
- name: infra.eda_configuration
# If you need a specific version of the collection, you can specify like this:
# version: ...
You can make use of this collection by directly invoking the roles or modules using the FQCN (fully qualified collection name).
In a playbook this might look like:
- name: Call Project role
hosts: localhost
roles:
- infra.eda_configuration.projects
or
- name: Call Project role
hosts: localhost
tasks:
- name: Add a project
infra.eda_configuration.project:
name: my_project
url: https://github.com/my/project.git
- Ansible Using collections for more details.
For details on changes between versions, please see the changelog for this collection.
Add more roles and modules for endpoints on the EDA Controller.
We welcome community contributions to this collection. If you find problems, please open an issue or create a PR against this repository. More information about contributing can be found in our Contribution Guidelines.
This collection follows the Ansible project's Code of Conduct. Please read and familiarize yourself with this document.
GNU General Public License v3.0 or later.
See LICENSE to see the full text.