--- - name: Basic Server setup hosts: all gather_facts: false tasks: - name: Test ping ansible.builtin.ping: - name: Install docker ansible.builtin.apt: name: docker.io state: present - name: Install nginx ansible.builtin.apt: name: nginx state: present - name: Ensure nginx is started ansible.builtin.service: name: nginx state: started - name: Create hello world file ansible.builtin.copy: dest: /var/www/html/index.html content: | uwu meow :3 mode: u=rw,g=r,o=r