Changed function name from is_vault_unsealed to is_vault_sealed to better reflect how it works but forgot to change an invocation
All checks were successful
Build and deploy Bridgeman Accessible Hashicorp Vault Implementation / deploy (push) Successful in 14s

This commit is contained in:
Alan Bridgeman 2025-12-28 16:35:22 -06:00
parent 3c4aa053ac
commit 3dd3862426

View file

@ -126,7 +126,7 @@ class Initializer:
print(unseal_output) print(unseal_output)
# If the vault is now unsealed break/escape from the loop # If the vault is now unsealed break/escape from the loop
if not self.is_vault_unsealed(): if not self.is_vault_sealed():
print('Vault is unsealed') print('Vault is unsealed')
break break