--- - name: test play hosts: "{{ target | default([]) }}" tasks: - name: say hello to the world ansible.builtin.debug: msg: hello world! - name: check connection using ping ansible.builtin.ping: - name: check become using ping become: true ansible.builtin.ping: