Ansible modules for interacting with the Foreman API and various plugin APIs such as Katello.
A list of all modules and their documentation can be found at theforeman.org/plugins/foreman-ansible-modules.
Modules should support any currently stable Foreman release and the matching set of plugins. Some modules have additional features/arguments that are only applied when the corresponding plugin is installed.
We actively test the modules against the latest stable Foreman release and the matching set of plugins.
The supported Ansible versions are aligned with currently maintained Ansible versions that support Collections (2.8+). You can find the list of maintained Ansible versions here.
Starting with Ansible 2.7, Ansible only supports Python 2.7 and 3.5 (and higher). These are also the only Python versions we develop and test the modules against.
-
Some modules, e.g.
repository_sync
andcontent_view_version
, trigger long running tasks on the server side. It might be beneficial to your playbook to wait for their completion in an asynchronous manner. As Ansible has facilities to do so, the modules will wait unconditionally. See the Ansible documentation for putting tasks in the background. -
According to Ansible documentation, using loop over Ansible resources can leak sensitive data. This applies to all modules, but especially those which require more secrets than the API credentials (
auth_source_ldap
,compute_resource
,host
,hostgroup
,http_proxy
,image
,repository
,scc_account
,user
). You can prevent this by usingno_log: yes
on the task.eg:
- name: Create compute resources theforeman.foreman.compute_resource: server_url: https://foreman.example.com username: admin password: changeme validate_certs: yes name: "{{ item.name }}" organizations: "{{ item.organizations | default(omit) }}" locations: "{{ item.locations | default(omit) }}" description: "{{ item.description | default(omit) }}" provider: "{{ item.provider }}" provider_params: "{{ item.provider_params | default(omit) }}" state: "{{ item.state | default('present') }}" loop: "{{ compute_resources }}" no_log: yes
There are currently two ways to use the modules in your setup: install from Ansible Galaxy or via RPM.
You can install the collection from Ansible Galaxy by running ansible-galaxy collection install theforeman.foreman
(Ansible 2.9 and later) or mazer install theforeman.foreman
(Ansible 2.8).
After the installation, the modules are available as theforeman.foreman.<module_name>
. Please see the Using Ansible collections documentation for further details.
The collection is also available as ansible-collection-theforeman-foreman
from the client
repository on yum.theforeman.org
.
After installing the RPM, you can use the modules in the same way as when they are installed directly from Ansible Galaxy.
These dependencies are required for the Ansible controller, not the Foreman server.
PyYAML
requests
ipaddress
for thesubnet
module on Python 2.7rpm
for the RPM support in thecontent_upload
moduledebian
for the DEB support in thecontent_upload
module
Roles using the Foreman Ansible Modules to configure Foreman and its plugins.
For individual role documentation, check the README defined at roles/rolename/README.md
.
server_url
: URL of the Foreman server.username
: Username accessing the Foreman server.password
: Password of the user accessing the Foreman server.validate_certs
: Whether or not to verify the TLS certificates of the Foreman server.organization
: Organization where configuration will be applied.