Sha256: 199c17306a33635553c1d452ffd515712e493cbd3a65fb6b181d8796e7df4efb
Contents?: true
Size: 1.21 KB
Versions: 6
Compression:
Stored size: 1.21 KB
Contents
require 'trollop' module SimpleDeploy module CLI class Template include Shared def show @opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS Show current template for stack. simple_deploy template -n STACK_NAME -e ENVIRONMENT EOS opt :help, "Display Help" opt :environment, "Set the target environment", :type => :string 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 raw_json = JSON.parse stack.template puts JSON.pretty_generate raw_json end end def command_summary 'Show current template for stack' end end end end
Version data entries
6 entries across 6 versions & 1 rubygems