From 6878f8690843e3f4b4c68f464bb39dd682bf51f4 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Thu, 23 Oct 2014 16:13:54 -0400 Subject: made aws list display more information, and be able to only show a single environment --- lib/aws_helper.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib/aws_helper.rb') diff --git a/lib/aws_helper.rb b/lib/aws_helper.rb index 6d213107b..053f5267e 100644 --- a/lib/aws_helper.rb +++ b/lib/aws_helper.rb @@ -21,12 +21,14 @@ module OpenShift retval << OpenStruct.new({ :name => info['ec2_tag_Name'], :env => info['ec2_tag_environment'] || 'UNSET', - :external_ip => info['ec2_ip_address'], - :public_dns => info['ec2_public_dns_name'] + :public_ip => info['ec2_ip_address'], + :public_dns => info['ec2_public_dns_name'], + :state => info['ec2_state'], + :created_by => info['ec2_tag_created-by'] }) end - retval.sort_by! { |h| [h.env, h.name] } + retval.sort_by! { |h| [h.env, h.state, h.name] } return retval end -- cgit v1.2.3