From 024a748f2a2795fef0b5ef2f285a06f9af573b8c Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Wed, 1 Aug 2018 18:46:08 -0700 Subject: [PATCH] Provide a unique color for us-east-1f availability zone Previously us-east-1e and us-east-1f would be using the same color. Signed-off-by: Tim Smith --- lib/chef/knife/ec2_server_list.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/chef/knife/ec2_server_list.rb b/lib/chef/knife/ec2_server_list.rb index d19ee7a5..f0ff26de 100644 --- a/lib/chef/knife/ec2_server_list.rb +++ b/lib/chef/knife/ec2_server_list.rb @@ -57,6 +57,8 @@ def azcolor(az) color = :red when /d$/ color = :magenta + when /e$/ + color = :yellow else color = :cyan end