diff --git a/ansible/nothing-playbook.yml b/ansible/nothing-playbook.yml new file mode 100644 index 0000000..ae7a139 --- /dev/null +++ b/ansible/nothing-playbook.yml @@ -0,0 +1,13 @@ +--- +- name: The Nothing Playbook + hosts: localhost + connection: local + + tasks: + - name: Print Message + ansible.builtin.debug: + msg: 'Playbook succeeded' + + - name: Print Variable + ansible.builtin.debug: + var: '{{ example_var | default('default') }}' \ No newline at end of file