ansible/roles/loadbalancer/tasks/installation.yml

13 lines
166 B
YAML

---
- name: Update apt cache
apt:
update_cache: yes
become: true
- name: Install Nginx
apt:
name:
- nginx-full
state: present
become: true