- name: Install nginx on remote host hosts: all become: true tasks: - name: Install nginx ansible.builtin.apt: name: nginx state: present update_cache: true