You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I do a lookup on my existing ec2 instances by name after a re-deployment, the results list includes the terminated instances and the new running instances. As a result I have to quick look into each one to determine which one is running and which one is not.
As a quick fix I edited find_ec2() in aws.py to include the instance state in the results returned to alfred:
title = '%s (%s) (%s)' % (instance['Tag:Name'], instance['InstanceId'], instance['State']['Name'])
however, I would like to see terminated instances filtered out, or only running instances returned.
What do you think?
The text was updated successfully, but these errors were encountered:
When I do a lookup on my existing ec2 instances by name after a re-deployment, the results list includes the terminated instances and the new running instances. As a result I have to quick look into each one to determine which one is running and which one is not.
As a quick fix I edited find_ec2() in aws.py to include the instance state in the results returned to alfred:
title = '%s (%s) (%s)' % (instance['Tag:Name'], instance['InstanceId'], instance['State']['Name'])
however, I would like to see terminated instances filtered out, or only running instances returned.
What do you think?
The text was updated successfully, but these errors were encountered: