Skip to content

Instantly share code, notes, and snippets.

@popowa
Last active December 17, 2015 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save popowa/5589957 to your computer and use it in GitHub Desktop.
Save popowa/5589957 to your computer and use it in GitHub Desktop.
自分が作ったスナップショット一覧
require 'rubygems'
require 'yaml'
require 'aws-sdk'
AWS.config({
:access_key_id => 'XXXXXXXXXXXXXXXXXXXXXXX',
:secret_access_key => 'XXXXXXXXXXXXXXXXXXXXXXX',
:ec2_endpoint => 'ec2.ap-northeast-1.amazonaws.com'
})
ec2 = AWS::EC2.new
ec2.snapshots.with_owner('self').each { |snapshot|
puts "#{snapshot.id}, #{snapshot.volume_id},'#{snapshot.description}', #{snapshot.tags["Name"]}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment