Sha256: af28cdebf2dc7b3d5799edc1001f46932fa1b183a74bca379c75911d2fdb7c6c
Contents?: true
Size: 1.08 KB
Versions: 18
Compression:
Stored size: 1.08 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 end valid_options? :provided => @opts, :required => [:environment, :name] SimpleDeploy.create_config @opts[:environment] 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
18 entries across 18 versions & 1 rubygems