This Ansible collection allows for easy interaction with an EDA Controller server via Ansible playbooks.
At present this collection is a work in progress and modules and roles will be added when available.
The work which will be done will be tracked in the issues. Feel free to add questions or feature requests there which can be answered or resolved once we begin work on this collection.
If you're interested in assisting with this collection please reach out to the maintainers.
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.