Ansible playbooks to manage the IT infrastructure
Find a file
2023-04-10 12:31:07 +02:00
LICENSE Initial commit 2023-04-10 12:08:04 +02:00
README.md add install instructions 2023-04-10 12:31:07 +02:00
update.yml change dnf to apt 2023-04-10 12:29:08 +02:00

ansible-playbooks

Ansible playbooks to manage the IT infrastructure.

Install Ansible

Using the dnf package manager:

sudo dnf install ansible

Configure hosts

Make sure to define the hosts in /etc/ansible/hosts:

[serversgroup]
<hostname or IP address> ansible_user=ansible

Run playbooks

The ssh credentials can be specified interactively:

ansible-playbook <playbook>.yml -k