Method: Stack#outputs
- Defined in:
- lib/cloudformer/stack.rb
#outputs ⇒ Object
109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/cloudformer/stack.rb', line 109 def outputs with_highlight do if !deployed puts "Stack not up." return 1 end stack.outputs.each do |output| puts "#{output.key} - #{output.description} - #{output.value}" end end return 0 end |