11 lines
224 B
YAML
11 lines
224 B
YAML
|
- hosts: localhost
|
||
|
gather_facts: no
|
||
|
vars:
|
||
|
mylist:
|
||
|
- alpha
|
||
|
- bravo
|
||
|
tasks:
|
||
|
- name: Should not fail on undefined variable
|
||
|
set_fact:
|
||
|
template_result: "{{ lookup('template', '6653.j2') }}"
|