blob: fc0542c188d973d50ca2125caf1ea511854976a4 (
plain)
1
2
3
4
5
6
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") }}'
|