Sha256: e0bd8290c7047f7929ea15d48ba23483cf7913ce6d8455c1d495a8f64cf2607f
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 KB
Contents
require 'trollop' module SimpleDeploy module CLI class Parameters include Shared def show @opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS Show parameters of a stack. simple_deploy parameters -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 => 'warn' opt :name, "Stack name to manage", :type => :string opt :read_from_env, "Read credentials and region from environment variables" end valid_options? :provided => @opts, :required => [:environment, :name, :read_from_env] 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 puts stack.parameters.sort end end def command_summary 'Show parameters of a stack' end end end end
Version data entries
6 entries across 6 versions & 1 rubygems