Class: Moonshot::Commands::Console

Inherits:
Moonshot::Command show all
Defined in:
lib/moonshot/commands/console.rb

Instance Method Summary collapse

Methods inherited from Moonshot::Command

inherited, #parser

Instance Method Details

#executeObject



9
10
11
12
13
14
15
16
17
18
# File 'lib/moonshot/commands/console.rb', line 9

def execute
  controller

  ec2 = Aws::EC2::Client.new
  iam = Aws::IAM::Client.new
  autoscaling = Aws::AutoScaling::Client.new
  cf = Aws::CloudFormation::Client.new

  Pry.start binding, backtrace: nil
end