feat(readme): add WIP warning

This commit is contained in:
Bertrand Lanson 2023-12-31 10:26:25 +01:00
parent 878f97244b
commit 41f2a5edd0
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
# Ansible Collection - ednxzu.hashistack
Documentation for the collection.
THIS REPOSITORY IS A WORK IN PROGRESS, IT IS NOWHERE NEAR FIT FOR PRODUCTION.

View File

@ -16,7 +16,7 @@
- name: "Initialize vault cluster"
ednxzu.hashistack.vault_init:
api_url: "http://127.0.0.1:8200"
api_url: "{{ hashi_vault_configuration['api_addr'] }}"
key_shares: 3
key_threshold: 2
run_once: true
@ -42,7 +42,7 @@
- name: "Unseal the bootstrap node"
ednxzu.hashistack.vault_unseal:
api_url: "http://127.0.0.1:8200"
api_url: "{{ hashi_vault_configuration['api_addr'] }}"
key_shares: "{{ _vault_cluster_config['keys'] }}"
max_retries: "{{ (_vault_cluster_config['keys'] | length) - 1 }}"
run_once: true
@ -51,7 +51,7 @@
- name: "Unseal all vault nodes"
ednxzu.hashistack.vault_unseal:
api_url: "http://127.0.0.1:8200"
api_url: "{{ hashi_vault_configuration['api_addr'] }}"
key_shares: "{{ _vault_cluster_config['keys'] }}"
max_retries: "{{ (_vault_cluster_config['keys'] | length) - 1 }}"
retries: 5