mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 16:18:00 +00:00
[aws] Add alias for ssh through ssm proxy
This commit is contained in:
parent
b2aead431c
commit
13f3cabd81
@ -105,6 +105,18 @@ function aws_ssm_session_any {
|
|||||||
id=$(aws ec2 describe-instances --profile $profile --output text \
|
id=$(aws ec2 describe-instances --profile $profile --output text \
|
||||||
--filter "Name=tag-value,Values=$1" "Name=instance-state-name,Values=running" \
|
--filter "Name=tag-value,Values=$1" "Name=instance-state-name,Values=running" \
|
||||||
--query 'Reservations[0].Instances[0].InstanceId')
|
--query 'Reservations[0].Instances[0].InstanceId')
|
||||||
|
if [[ $2 == "ssh" ]]; then
|
||||||
aws ssm start-session --profile $profile --target $id
|
AWS_PROFILE=$profile ssh $id
|
||||||
|
else
|
||||||
|
aws ssm start-session --profile $profile --target $id
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# ~/.ssh/config
|
||||||
|
#
|
||||||
|
# Host i-*
|
||||||
|
# ProxyCommand sh -c "aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters 'portNumber=%p'"
|
||||||
|
# User <your_user>
|
||||||
|
function ssh_aws_any {
|
||||||
|
aws_ssm_session_any $1 ssh
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user