このアカウントは、notestockで公開設定になっていません。
host i-* mi-* aws-* stg-aws-*
ForwardAgent yes
ProxyCommand bash -c "set -x; aws --profile $(echo '%h' | grep ',' &> /dev/null && echo '%h' | cut -f 2 -d ',' || echo default) ssm start-session --target $(echo '%h' | cut -f 1 -d ',') --document-name AWS-StartSSHSession --parameters 'portNumber=%p'"
を設定しておくと ssh user@id[,profile] でsshできるようになるから
Host aws-bastion
Hostname i-030c9998b6c7df1c5
User mohemohe
Port 22
IdentityFile ~/.ssh/id_ecdsa
とか
Host stg-aws-bastion
Hostname i-097172b12747c67b4,stg
User mohemohe
Port 22
IdentityFile ~/.ssh/id_ecdsa
で楽にsshできる
このアカウントは、notestockで公開設定になっていません。