From 3d599232b7cb2cb1a65c2ff10bdf58a9b6314d97 Mon Sep 17 00:00:00 2001 From: technowhizz <7688823+technowhizz@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:23:00 +0100 Subject: [PATCH] Update vault haproxy template --- doc/source/configuration/vault.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/configuration/vault.rst b/doc/source/configuration/vault.rst index a1a8429e2..a3147c438 100644 --- a/doc/source/configuration/vault.rst +++ b/doc/source/configuration/vault.rst @@ -108,9 +108,10 @@ Setup HAProxy config for Vault option httpchk GET /v1/sys/health # https://www.vaultproject.io/api-docs/system/health # 200: initialized, unsealed, and active + # 429: backup # 501: not initialised (required for bootstrapping) # 503: sealed (required for bootstrapping) - http-check expect rstatus (200|501|503) + http-check expect rstatus (200|429) {% for host in groups['control'] %} {% set host_name = hostvars[host].ansible_facts.hostname %}