2014-05-21 21:06:47 +02:00
|
|
|
- hosts: testhost
|
|
|
|
vars_files:
|
|
|
|
- vars/test_var_encrypted.yml
|
|
|
|
|
|
|
|
gather_facts: False
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'secret_var == "secret"'
|
2016-01-22 17:23:10 +01:00
|
|
|
|
|
|
|
- copy: src=vault-secret.txt dest={{output_dir}}/secret.txt
|
2014-05-21 21:06:47 +02:00
|
|
|
|