Last active
May 29, 2020 07:23
-
-
Save vegaasen/58efd217071526deb54b8a8d8882ea66 to your computer and use it in GitHub Desktop.
MacOS: Fetch/Get all secrets from a defined Azure KeyVault
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# usage ./azure-get-secrets-from-keyvault.sh my-awesome-az-keyvault | |
KEY_VAULT=${1:-my-keyvault} | |
if [[ -z `which az` ]]; then | |
echo -e "OH NOES! Missing A Z U R E 😱! Install the tools by running \nbrew install azure-cli" | |
exit 1; | |
fi | |
function getSecret() { | |
az keyvault secret show --vault-name "${KEY_VAULT}" --name "$1" --query "value" | |
} | |
function applySecret() { | |
local key=$1 | |
local secret=`getSecret $2` | |
env ${key}="${secret}" 2&>1 /dev/null ; | |
echo "✅ Defined ${key}:${secret}" | |
} | |
echo "⏳ Starting to fetch secrets" | |
applySecret "database.somedb.url" "db-somedb-url" | |
applySecret "database.somedb.password" "db-somedb-password" | |
applySecret "database.anotherone.url" "db-anotherone-url" | |
applySecret "database.anotherone.password" "db-anotherone-password" | |
applySecret "redis.password" "service-redis-password" | |
echo "👏 Done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment