From bdd32503f489a620c13e0d1ed103c4f2b5d0decf Mon Sep 17 00:00:00 2001 From: Masaki Yatsu Date: Wed, 20 Aug 2025 16:53:26 +0900 Subject: [PATCH] fix(postgres): fix storing password to vault --- postgres/justfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/postgres/justfile b/postgres/justfile index c243d38..11002dc 100644 --- a/postgres/justfile +++ b/postgres/justfile @@ -69,8 +69,7 @@ admin-password: # Put admin credentials to Vault put-admin-credentials-to-vault: - @echo vault::put postgres/admin username=$(just admin-username) password=$(just admin-password) - @just vault::put postgres/admin username=$(just admin-username) password=$(just admin-password) + @just vault::put-root postgres/admin username=$(just admin-username) password=$(just admin-password) @echo "Admin credentials stored in Vault under 'postgres/admin'." # Create Postgres database