8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/simple_perf/cli/destroy.rb', line 8
def execute
opts = Trollop::options do
version SimplePerf::VERSION
banner "\nDestroys CloudFormation stack.\n\nUsage:\nsimple_perf destroy -e ENVIRONMENT -n STACK_NAME\n"
opt :help, "Display Help"
opt :environment, "Set the target environment", :type => :string
opt :name, "Stack name to manage", :type => :string
end
Trollop::die :environment, "is required but not specified" unless opts[:environment]
Trollop::die :name, "is required but not specified" unless opts[:name]
command = 'simple_deploy destroy' +
' -e ' + opts[:environment] +
' -n ' + opts[:name]
Shared::pretty_print `#{command}`
end
|