lib/simple_deploy/cli/create.rb in simple_deploy-0.9.2 vs lib/simple_deploy/cli/create.rb in simple_deploy-0.10.0.beta.1
- old
+ new
@@ -26,16 +26,18 @@
: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 :read_from_env, "Read credentials and region from environment variables"
opt :template, "Path to the template file", :type => :string
end
valid_options? :provided => @opts,
- :required => [:environment, :name, :template]
+ :required => [:environment, :name, :read_from_env, :template]
- SimpleDeploy.create_config @opts[:environment]
+ 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]
rescue_exceptions_and_exit do