Files
modules/coder-login/run.sh
Stephen Kirby aa849bc42e Debugging
2023-09-29 16:15:33 +00:00

17 lines
417 B
Bash

#!/usr/bin/env sh
# Automatically authenticate the user if they are not
# logged in to another deployment
echo "Logging into Coder..."
echo "SESSION TOKEN : ${CODER_USER_TOKEN}"
echo "DEPLOYMENT URL: ${CODER_DEPLOYMENT_URL}"
echo ""
if ! coder list >/dev/null 2>&1; then
set +x; coder login --token="${CODER_USER_TOKEN}" --url="${CODER_DEPLOYMENT_URL}"
else
echo "You are already authenticated with coder"
fi