Sha256: 4a81558065d361a2fa06093b30947c081394f5dc077887606bc4d12b56e5493b

Contents?: true

Size: 1.62 KB

Versions: 7

Compression:

Stored size: 1.62 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI

    class Protect
      include Shared

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

Protect/Unprotect one or more stacks.

simple_deploy protect -n STACK_NAME1 -n STACK_NAME2 -e ENVIRONMENT -p on_off

EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :protection, "Enable/Disable protection using on/off", :type  => :string
          opt :log_level, "Log level:  debug, info, warn, error", :type    => :string,
                                                                  :default => 'info'
          opt :name, "Stack name(s) of stacks to protect", :type => :string,
                                                           :multi => true
        end

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

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

        @opts[:name].each do |name|
          stack = Stack.new :environment => @opts[:environment],
                            :name        => name,
                            :config      => config,
                            :logger      => logger
          rescue_stackster_exceptions_and_exit do
            stack.update :attributes => [{ 'protection' => @opts[:protection] }]
          end
        end
      end

      def logger
        @logger ||= SimpleDeployLogger.new :log_level => @opts[:log_level]
      end

      def command_summary
        'Protect/Unprotect one or more stacks'
      end

    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
simple_deploy-0.7.2 lib/simple_deploy/cli/protect.rb
simple_deploy-0.7.2.beta.1 lib/simple_deploy/cli/protect.rb
simple_deploy-0.7.1 lib/simple_deploy/cli/protect.rb
simple_deploy-0.7.0 lib/simple_deploy/cli/protect.rb
simple_deploy-0.6.7 lib/simple_deploy/cli/protect.rb
simple_deploy-0.6.6 lib/simple_deploy/cli/protect.rb
simple_deploy-0.6.5 lib/simple_deploy/cli/protect.rb