You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.9 KiB
Bash
88 lines
2.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
BOLD='\033[0;1m'
|
|
VAULT_ADDR=${VAULT_ADDR}
|
|
VERSION=${VERSION}
|
|
AUTH_PATH=${AUTH_PATH}
|
|
GITHUB_EXTERNAL_AUTH_ID=${GITHUB_EXTERNAL_AUTH_ID}
|
|
|
|
# Check if vault is installed
|
|
if ! command -v vault &>/dev/null; then
|
|
printf "$${BOLD}Installing vault CLI ...\n\n"
|
|
# check if curl is installed
|
|
if ! command -v curl &>/dev/null; then
|
|
printf "curl is not installed. Please install curl in your image.\n"
|
|
exit 1
|
|
fi
|
|
|
|
# Check if unzip is installed
|
|
if ! command -v unzip &>/dev/null; then
|
|
# Check if busybox is installed and can provide unzip
|
|
if command -v busybox &>/dev/null && busybox --list | grep -q '^unzip$'; then
|
|
alias unzip='busybox unzip'
|
|
printf "Using busybox unzip.\n"
|
|
else
|
|
printf "unzip is not installed and busybox unzip is not available. Please install unzip in your image.\n"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# check if VERSION is latest
|
|
if [ "${VERSION}" = "latest" ]; then
|
|
INSTALL_VERSION=$(curl -s https://releases.hashicorp.com/vault/ | grep -oP '[0-9]+\.[0-9]+\.[0-9]' | tr -d '<>' | head -1)
|
|
else
|
|
INSTALL_VERSION=$VERSION
|
|
fi
|
|
|
|
# download vault
|
|
curl -sLo vault.zip https://releases.hashicorp.com/vault/${INSTALL_VERSION}/vault_${INSTALL_VERSION}_linux_amd64.zip
|
|
unzip vault.zip
|
|
sudo mv vault /usr/local/bin
|
|
rm vault.zip
|
|
fi
|
|
|
|
printf "🥳 Installation complete!\n\n"
|
|
|
|
# Set up Vault token
|
|
printf "🔑 Authenticating with Vault ...\n\n"
|
|
echo "AUTH_PATH: $AUTH_PATH"
|
|
echo "GITHUB_EXTERNAL_AUTH_ID: $GITHUB_EXTERNAL_AUTH_ID"
|
|
GITHUB_TOKEN=$(coder external-auth access-token $GITHUB_EXTERNAL_AUTH_ID)
|
|
if [ $? -ne 0 ]; then
|
|
printf "Authentication with Vault failed. Please check your credentials.\n"
|
|
exit 1
|
|
fi
|
|
|
|
export VAULT_ADDR=$VAULT_ADDR
|
|
|
|
# Verify Vault address
|
|
printf "🔎 Verifying Vault address...\n\n"
|
|
vault status
|
|
|
|
# Login to Vault to using GitHub token
|
|
printf "🔑 Logging in to Vault ...\n\n"
|
|
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
|
|
# bash
|
|
if [[ -f ~/.bashrc ]] && ! grep -q "VAULT_ADDR" ~/.bashrc; then
|
|
printf "\nAdding VAULT_ADDR to ~/.bashrc ...\n"
|
|
echo "export VAULT_ADDR=$VAULT_ADDR" >>~/.bashrc
|
|
fi
|
|
|
|
# zsh
|
|
if [[ -f ~/.zshrc ]] && ! grep -q "VAULT_ADDR" ~/.zshrc; then
|
|
printf "\nAdding VAULT_ADDR to ~/.zshrc ...\n"
|
|
echo "export VAULT_ADDR=$VAULT_ADDR" >>~/.zshrc
|
|
fi
|
|
|
|
# fish
|
|
if [[ -f ~/.config/fish/config.fish ]] && ! grep -q "VAULT_ADDR" ~/.config/fish/config.fish; then
|
|
printf "\nAdding VAULT_ADDR to ~/.config/fish/config.fish ...\n"
|
|
echo "set -x VAULT_ADDR $VAULT_ADDR" >>~/.config/fish/config.fish
|
|
fi
|
|
|
|
printf "\n🥳 Vault authentication complete!\n\n"
|
|
printf "You can now use Vault CLI to access secrets.\n"
|