--- - name: Hello world hosts: localhost connection: local become: no gather_facts: no tasks: - name: Say Hello world ansible.builtin.debug: msg: Hello world! ...