Ansible Overview
Ansible Overview
Section titled โAnsible OverviewโQuick example (playbook)
Section titled โQuick example (playbook)โ---- name: Ensure NGINX running  hosts: web  become: true  tasks:    - apt:        name: nginx        state: present        update_cache: true    - systemd:        name: nginx        state: started        enabled: true