From 3cccede011649d45e6592ca8db88b6a146e1389a Mon Sep 17 00:00:00 2001 From: Nikolai Kondrashov Date: Thu, 18 Jan 2024 12:37:25 +0200 Subject: [PATCH] cloud: Fix password secret deployment --- kcidb/cloud/password.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcidb/cloud/password.sh b/kcidb/cloud/password.sh index c19719f4..3173df46 100644 --- a/kcidb/cloud/password.sh +++ b/kcidb/cloud/password.sh @@ -220,7 +220,7 @@ function password_deploy_secret() { # Get and cache the password in the current shell first password_get "$name" > /dev/null # Deploy the cached password - password_get "$name" | secret_deploy "$project" "$name" + password_get "$name" | secret_deploy "$project" "$secret" fi done }