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.
35 lines
983 B
YAML
35 lines
983 B
YAML
5 years ago
|
- hosts: localhost
|
||
|
gather_facts: False
|
||
|
vars:
|
||
|
od: "{{output_dir|default('/tmp')}}/test_vault_assemble"
|
||
|
tasks:
|
||
|
- name: create target directory
|
||
|
file:
|
||
|
path: "{{od}}"
|
||
|
state: directory
|
||
|
|
||
|
- name: assemble_file file with secret
|
||
|
assemble:
|
||
|
src: files/test_assemble
|
||
|
dest: "{{od}}/dest_file"
|
||
|
remote_src: no
|
||
|
mode: 0600
|
||
|
|
||
|
- name: remove assembled file with secret (so nothing should have unencrypted secret)
|
||
|
file: path="{{od}}/dest_file" state=absent
|
||
|
|
||
|
- name: find temp files with secrets
|
||
|
find:
|
||
|
paths: '{{temp_paths}}'
|
||
|
contains: 'VAULT TEST IN WHICH BAD THING HAPPENED'
|
||
|
recurse: yes
|
||
|
register: badthings
|
||
|
vars:
|
||
|
temp_paths: "{{[lookup('env', 'TMP'), lookup('env', 'TEMP'), hardcoded]|flatten(1)|unique|list}}"
|
||
|
hardcoded: ['/tmp', '/var/tmp']
|
||
|
|
||
|
- name: ensure we failed to find any
|
||
|
assert:
|
||
|
that:
|
||
|
- badthings['matched'] == 0
|