Skip to content

Instantly share code, notes, and snippets.

@vegaasen
Last active May 29, 2020 07:23
Show Gist options
  • Save vegaasen/58efd217071526deb54b8a8d8882ea66 to your computer and use it in GitHub Desktop.
Save vegaasen/58efd217071526deb54b8a8d8882ea66 to your computer and use it in GitHub Desktop.
MacOS: Fetch/Get all secrets from a defined Azure KeyVault
#!/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