mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
YAML
14 lines
391 B
YAML
6 years ago
|
# https://github.com/ansible/ansible/issues/34209
|
||
|
- hosts: localhost
|
||
|
gather_facts: no
|
||
|
vars:
|
||
|
hello_world: Hello World
|
||
|
tasks:
|
||
|
- name: Test that template lookup can handle vaulted templates
|
||
|
set_fact:
|
||
|
vaulted_hello_world: "{{ lookup('template', 'vaulted_hello.j2') }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "vaulted_hello_world|trim == 'Unvaulted Hello World!'"
|