ansible/roles/awx/tasks/read_vault.yml

11 lines
245 B
YAML
Raw Normal View History

2021-06-10 14:41:21 +02:00
---
- debug:
msg: "Vault location: {{ playbook_dir }}/../vaults/{{ jh_inventory_name }}"
- name: include vault
include_vars:
dir: "{{ playbook_dir }}/../vaults/{{ jh_inventory_name }}"
files_matching: vault.yml
no_log: true
...