Skip to content

Instantly share code, notes, and snippets.

Created April 14, 2015 13:24
Show Gist options
  • Save anonymous/30359f45060d58cb9972 to your computer and use it in GitHub Desktop.
Save anonymous/30359f45060d58cb9972 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
require 'aws-sdk'
ec2 = Aws::EC2::Client.new(
region: 'eu-central-1a',
)
resp = ec2.stop_instances(
dry_run: true,
instance_ids: ["i-9ddd44"],
force: true,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment