Sha256: c0ee5d1926903705930ec9950f2c034716cc9cdf15ece28d441b11c3d5d553ca
Contents?: true
Size: 1.44 KB
Versions: 9
Compression:
Stored size: 1.44 KB
Contents
require 'trollop' module SimpleDeploy module CLI class Protect 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 CLI::Shared.valid_options? :provided => opts, :required => [:environment, :name] config = Config.new.environment opts[:environment] logger = SimpleDeployLogger.new :log_level => opts[:log_level] opts[:name].each do |name| stack = Stack.new :environment => opts[:environment], :name => name, :config => config, :logger => logger stack.update :attributes => [{ 'protection' => opts[:protection] }] end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems