Sha256: be20c5647ce8243e42ad4f014fe9139a7b075cd0677a8cf48092cd36d9a906ee

Contents?: true

Size: 1.88 KB

Versions: 6

Compression:

Stored size: 1.88 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 :as_command_args,
              "Displays the attributes in a format suitable for using on the command line"
          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
          opt :read_from_env, "Read credentials and region from environment variables"
        end

        valid_options? :provided => @opts,
                       :required => [:environment, :name, :read_from_env]

        config_arg = @opts[:read_from_env] ? :read_from_env : @opts[:environment]
        SimpleDeploy.create_config config_arg
        logger = SimpleDeploy.logger @opts[:log_level]
        stack = Stack.new :name        => @opts[:name],
                          :environment => @opts[:environment]

        rescue_exceptions_and_exit do
          @outputs = stack.outputs

          logger.info "No outputs." unless @outputs.any?

          @opts[:as_command_args] ? command_args_output : default_output
        end
      end

      def command_summary
        'Show outputs of a stack'
      end

      private

      def command_args_output
        @outputs.each do |hash|
          print "-a %s=%s " % [hash['OutputKey'], hash['OutputValue']]
        end
        puts ""
      end

      def default_output
        @outputs.each do |hash|
          puts "%s: %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.10.2 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.10.1 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.10.0 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.10.0.beta.3 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.10.0.beta.2 lib/simple_deploy/cli/outputs.rb
simple_deploy-0.10.0.beta.1 lib/simple_deploy/cli/outputs.rb