Class: SimpleDeploy::CLI::Resources

Inherits:
Object
  • Object
show all
Defined in:
lib/simple_deploy/cli/resources.rb

Instance Method Summary collapse

Instance Method Details

#showObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/simple_deploy/cli/resources.rb', line 6

def show
  opts = Trollop::options do
    version SimpleDeploy::VERSION
    banner <<-EOS

Show resources of a stack.

simple_deploy resources -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
  end

  CLI::Shared.valid_options? :provided => opts,
                             :required => [:environment, :name]

  config = Config.new.environment opts[:environment]

  logger = SimpleDeployLogger.new :log_level => opts[:log_level]

  stack = Stack.new :environment => opts[:environment],
                    :name        => opts[:name],
                    :config      => config,
                    :logger      => logger

  jj stack.resources
end