Ansible is a configuration management tool that allows to automate the configuration of multiple servers.`
sudo apt update
sudo apt install ansible
ansible-playbook -i hosts setup.yml
hosts
: The inventory file with the hosts to configure.setup.yml
: The playbook file with the tasks to execute.