class Moonshot::Commands::Console

Public Instance Methods

execute() click to toggle source
# 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