From 02406f2c16521c321030ee7d238e76429b5fd95f Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sun, 26 Nov 2023 05:51:14 +0300 Subject: [PATCH] Update Vault login command to include -no-print flag --- vault-github/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vault-github/run.sh b/vault-github/run.sh index 7f4112b..481f2d0 100644 --- a/vault-github/run.sh +++ b/vault-github/run.sh @@ -53,7 +53,7 @@ vault status # Login to Vault to using GitHub token printf "🔑 Logging in to Vault ...\n\n" -vault login -method=github token=$GITHUB_TOKEN -path=/$AUTH_PATH +vault login -no-print -method=github -path=/$AUTH_PATH token=$GITHUB_TOKEN # Add VAULT_ADDR to shell login scripts if not already present e.g. .bashrc, .zshrc # This is a temporary fix and will be replaced with https://github.com/coder/coder/issues/10166