infra-as-code/playbooks/install_nginx.yml

15 lines
281 B
YAML

- hosts: nginx
become: true
tasks:
- name: Install nginx
package:
name: nginx
state: present
update_cache: yes
notify: restart nginx
handlers:
- name: restart nginx
ansible.builtin.service:
name: nginx
state: restarted