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.
ansible/test/integration/targets/lookups/template_lookup_vaulted.yml

14 lines
391 B
YAML

# 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!'"