Sha256: c0e09b5bd7bc1289b60948541725161557c31cc7a7c3db1c64dc4da301f26f3c

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI
    class Outputs
      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

        CLI::Shared.valid_options? :provided => opts,
                                   :required => [:environment, :name]

        config = Config.new.environment opts[:environment]

        logger = SimpleDeployLogger.new :log_level => opts[:log_level]

        stack = Stack.new :environment => opts[:environment],
                          :name        => opts[:name],
                          :config      => config,
                          :logger      => logger

        outputs = stack.outputs
        outputs.each do |hash|
          puts "%30s: %s" % [hash['OutputKey'], hash['OutputValue']]
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_deploy-0.6.1 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.6.0 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.5.6 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.5.5 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.5.4 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.5.3 lib/simple_deploy/cli/outputs.rb