We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list
session
I like the usage of this command. I have 10 instances that match this tag and session will ssh/ssm into one of the instances perfectly.
$ aws-gate session Name:my-app
But what if I wanted to ssh/ssm into a specific instance? I cannot easily do this unless I list my instances using the awscli.
$ aws ec2 describe-instances \ --filters "Name=tag:Name,Values=my-app" \ --query 'Reservations[].Instances[].InstanceId'
What I'd like is something like this and have it populate all the instance ids that match it.
$ aws-gate list Name:my-app
It would be perfect if it worked for multiple tags too
$ aws-gate list Name:my-app,env:prod
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
I like the usage of this command. I have 10 instances that match this tag and
session
will ssh/ssm into one of the instances perfectly.But what if I wanted to ssh/ssm into a specific instance? I cannot easily do this unless I list my instances using the awscli.
Proposal
What I'd like is something like this and have it populate all the instance ids that match it.
It would be perfect if it worked for multiple tags too
Thank you!
The text was updated successfully, but these errors were encountered: