lib/simple_deploy/cli/outputs.rb in simple_deploy-0.5.2 vs lib/simple_deploy/cli/outputs.rb in simple_deploy-0.5.3
- old
+ new
@@ -30,10 +30,13 @@
stack = Stack.new :environment => opts[:environment],
:name => opts[:name],
:config => config,
:logger => logger
- puts stack.outputs
+ outputs = stack.outputs
+ outputs.each do |hash|
+ puts "%30s: %s" % [hash['OutputKey'], hash['OutputValue']]
+ end
end
end
end
end