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.
16 lines
434 B
YAML
16 lines
434 B
YAML
7 years ago
|
- name: "test that the vaulted_utf8_value decrypts correctly"
|
||
|
gather_facts: false
|
||
|
hosts: testhost
|
||
|
vars:
|
||
|
expected: "aöffü"
|
||
|
tasks:
|
||
|
- name: decrypt vaulted_utf8_value and show it in debug
|
||
|
debug:
|
||
|
var: vaulted_utf8_value
|
||
|
|
||
|
- name: assert decrypted vaulted_utf8_value matches expected
|
||
|
assert:
|
||
|
that:
|
||
|
- "vaulted_utf8_value == expected"
|
||
|
- "vaulted_utf8_value == 'aöffü'"
|