Sha256: 059f994272686627489b6a885979661893ed157b63619871c3463701cb3353e4
Contents?: true
Size: 1.65 KB
Versions: 22
Compression:
Stored size: 1.65 KB
Contents
require 'trollop' module SimpleDeploy module CLI class Create def create opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS Create a new stack. simple_deploy create -n STACK_NAME -t PATH_TO_TEMPLATE -e ENVIRONMENT -a KEY1=VAL1 -a KEY2=VAL2 EOS opt :help, "Display Help" opt :attributes, "= seperated attribute and it's value", :type => :string, :multi => true 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 :template, "Path to the template file", :type => :string end CLI::Shared.valid_options? :provided => opts, :required => [:environment, :name, :template] config = Config.new.environment opts[:environment] logger = SimpleDeployLogger.new :log_level => opts[:log_level] attributes = CLI::Shared.parse_attributes :attributes => opts[:attributes], :logger => logger stack = Stack.new :environment => opts[:environment], :name => opts[:name], :config => config, :logger => logger stack.create :attributes => attributes, :template => opts[:template] end end end end
Version data entries
22 entries across 22 versions & 1 rubygems