summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/unused_vars_include.yml
blob: ff31b70d3cc007f4aef0b4c198ba6050dc268df3 (plain)
1
2
3
4
5
6
7
8
- hosts: localhost
  gather_facts: no
  vars:
    test_var: foo
    unused_var: "{{ undefined_var }}"
  tasks:
    - debug:
        msg: "{{ lookup('template', 'unused_vars_template.j2') }}"