diff options
Diffstat (limited to 'examples/roles/template_lookup_missing/tasks/main.yml')
-rw-r--r-- | examples/roles/template_lookup_missing/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/roles/template_lookup_missing/tasks/main.yml b/examples/roles/template_lookup_missing/tasks/main.yml new file mode 100644 index 0000000..fc0542c --- /dev/null +++ b/examples/roles/template_lookup_missing/tasks/main.yml @@ -0,0 +1,7 @@ +--- +# See comments in `examples/roles/template_lookup/tasks/main.yml` +# for why the task is in a block. +- block: + - name: Bug demo + ansible.builtin.debug: + msg: '{{ lookup("file", "a_file") }}' |