d0fda3e901
Until now, the lookup plugin returned a byte string. Changed this to output a unicode string instead.
9 lines
212 B
YAML
9 lines
212 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- set_fact:
|
|
unvaulted: "{{ lookup('unvault', 'vault') }}"
|
|
- debug:
|
|
msg: "{{ unvaulted }}"
|
|
- assert:
|
|
that:
|
|
- "unvaulted == 'foo: bar\n'"
|