зеркало из https://github.com/mozilla/hubs-ops.git
36 строки
1.8 KiB
Bash
Executable File
36 строки
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo -e "
|
|
Usage: console.sh <host-type|hostname> [environment]
|
|
|
|
Opens an Elixir console via the bastion to a random host of type <host-type> or host <hostname> within specified environment or <hostname>.
|
|
|
|
Expects ssh-agent to have mozilla mr ssh key registered and present in ~/.ssh/mozilla_mr_id_rsa.
|
|
"
|
|
exit 1
|
|
fi
|
|
|
|
HOST_TYPE_OR_NAME=$1
|
|
ENVIRONMENT=$2
|
|
|
|
[[ -z "$ENVIRONMENT" ]] && ENVIRONMENT=dev
|
|
|
|
REGION="us-west-1"
|
|
|
|
EC2_INFO=$(aws ec2 --region $REGION describe-instances)
|
|
|
|
BASTION_IP=$(echo $EC2_INFO | jq -r ".Reservations | map(.Instances) | flatten | map(select(any(.State ; .Name == \"running\"))) | map(select(any(.Tags // [] | from_entries ; .[\"host-type\"] == \"${ENVIRONMENT}-bastion\"))) | .[] | .PublicIpAddress" | shuf | head -n1)
|
|
|
|
if [[ $HOST_TYPE_OR_NAME == *"-"* ]] ; then
|
|
# it's a hostname
|
|
TARGET_IP=$(echo $EC2_INFO | jq -r ".Reservations | map(.Instances) | flatten | map(select(any(.State ; .Name == \"running\"))) | map(select(any(.Tags // [] | from_entries ; .[\"Name\"] == \"${HOST_TYPE_OR_NAME}\"))) | .[] | .PrivateIpAddress" | shuf | head -n1)
|
|
else
|
|
# it's a host type
|
|
TARGET_IP=$(echo $EC2_INFO | jq -r ".Reservations | map(.Instances) | flatten | map(select(any(.State ; .Name == \"running\"))) | map(select(any(.Tags // [] | from_entries ; .[\"host-type\"] == \"${ENVIRONMENT}-${HOST_TYPE_OR_NAME}\"))) | .[] | .PrivateIpAddress" | shuf | head -n1)
|
|
fi
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
scp -o ProxyCommand="ssh -W %h:%p -i ~/.ssh/mozilla_mr_id_rsa ubuntu@${BASTION_IP}" -i ~/.ssh/mozilla_mr_id_rsa $SCRIPTPATH/remote_console.sh "ubuntu@${TARGET_IP}:~" > /dev/null
|
|
ssh -o ProxyCommand="ssh -W %h:%p -i ~/.ssh/mozilla_mr_id_rsa ubuntu@${BASTION_IP}" -i ~/.ssh/mozilla_mr_id_rsa -t "ubuntu@${TARGET_IP}" 'chmod +x remote_console.sh ; ./remote_console.sh'
|