Sha256: 0d13a4ce8b533b184c98b0ce2ed496ecc0801864ee09d82fefb204b8c883ab98

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI

    class Destroy
      include Shared

      def destroy
        @opts = Trollop::options do
          version SimpleDeploy::VERSION
          banner <<-EOS

Destroy a stack.

simple_deploy destroy -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 => 'info'
          opt :name, "Stack name(s) of stack to deploy", :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
        SimpleDeploy.logger @opts[:log_level]
        stack = Stack.new :name        => @opts[:name],
                          :environment => @opts[:environment]

        exit 1 unless stack.destroy
      end

      def command_summary
        'Destroy a stack'
      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/destroy.rb
simple_deploy-0.10.1 lib/simple_deploy/cli/destroy.rb
simple_deploy-0.10.0 lib/simple_deploy/cli/destroy.rb
simple_deploy-0.10.0.beta.3 lib/simple_deploy/cli/destroy.rb
simple_deploy-0.10.0.beta.2 lib/simple_deploy/cli/destroy.rb
simple_deploy-0.10.0.beta.1 lib/simple_deploy/cli/destroy.rb