Re: [ansible-project] Difficulty including files with password variables in.

2017-02-05 Thread Johannes Kastl
On 31.01.17 17:02 Jonty Needham wrote: > password: secrets.svn_pass Aren't double curly braces needed here? password: "{{ secrets.svn_pass }}" And: why the secrets prefix? The variable only does not suffice? Johannes -- You received this message because you are subscribed to the

[ansible-project] Difficulty including files with password variables in.

2017-01-31 Thread Jonty Needham
I have the following playbook: --- - hosts: localhost tasks: - include_vars: file: /path/to/my/vault/encrypted/file name: secrets - subversion: repo: https://path/to/my/repo dest: /tmp/checkout username: username password: secrets.svn_pass export: