awsコマンドでec2のidをいい感じに取得する
code:shell
aws ec2 describe-instances --profile xxx --output json | jq '.Reservations[].Instances[] | { (.Tags[] | select(.Key == "Name").Value): .InstanceId }' | fzf
tagでNameがついてるのでそれでfilterしてfzfに食べさせてあげる