mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 20:20:06 -03:30
Added persistent storage Auto-create vault and awx via playbooks Create a new pattern for custom containers where we can do initialization Auto-install roles needed for plumbing via the Makefile
15 lines
297 B
YAML
15 lines
297 B
YAML
---
|
|
- name: Load vault keys
|
|
include_vars:
|
|
file: "{{ vault_file }}"
|
|
|
|
- name: Unseal the vault
|
|
flowerysong.hvault.seal:
|
|
vault_addr: "http://localhost:1234"
|
|
state: unsealed
|
|
key: "{{ item }}"
|
|
loop:
|
|
- "{{ Unseal_Key_1 }}"
|
|
- "{{ Unseal_Key_2 }}"
|
|
- "{{ Unseal_Key_3 }}"
|