Sha256: 9df0e80e2b42d562ec903eba09b320ecdb5400b2638406fd6855569596cfc69f
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 KB
Contents
require 'trollop' module SimpleDeploy module CLI class Outputs include Shared def show @opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS Show outputs of a stack. simple_deploy outputs -n STACK_NAME -e ENVIRONMENT EOS opt :help, "Display Help" opt :environment, "Set the target environment", :type => :string opt :log_level, "Log level: debug, info, warn, error", :type => :string, :default => 'warn' opt :name, "Stack name to manage", :type => :string end valid_options? :provided => @opts, :required => [:environment, :name] config = Config.new.environment @opts[:environment] stack = Stack.new :environment => @opts[:environment], :name => @opts[:name], :config => config, :logger => logger rescue_stackster_exceptions_and_exit do outputs = stack.outputs logger.info "No outputs." unless outputs.any? outputs.each do |hash| puts "%s: %s" % [hash['OutputKey'], hash['OutputValue']] end end end def logger @logger ||= SimpleDeployLogger.new :log_level => @opts[:log_level] end def command_summary 'Show outputs of a stack' end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simple_deploy-0.6.7 | lib/simple_deploy/cli/outputs.rb |
simple_deploy-0.6.6 | lib/simple_deploy/cli/outputs.rb |
simple_deploy-0.6.5 | lib/simple_deploy/cli/outputs.rb |