- name: Hello world hosts: all become: false gather_facts: false tasks: - name: Say hello world ansible.builtin.debug: msg: Hello world! - name: Say goodbye world ansible.builtin.fail: msg: Goodbye world!