1- name: "Test that the vaulted file with UTF-8 in filename decrypts correctly"
2  gather_facts: false
3  hosts: testhost
4  vars:
5    expected: "my_secret"
6  vars_files:
7    - vault-café.yml
8  tasks:
9    - name: decrypt vaulted file with utf8 in filename and show it in debug
10      debug:
11         var: vault_string
12
13    - name: assert decrypted value matches expected
14      assert:
15        that:
16          - "vault_string == expected"
17