aws_dump 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/aws_dump.gemspec +24 -0
- data/lib/aws_dump/account.rb +27 -0
- data/lib/aws_dump/instance.rb +33 -0
- data/lib/aws_dump/ip_permission.rb +38 -0
- data/lib/aws_dump/rds_instance.rb +12 -0
- data/lib/aws_dump/region.rb +52 -0
- data/lib/aws_dump/security_group.rb +30 -0
- data/lib/aws_dump/version.rb +3 -0
- data/lib/aws_dump/vpc.rb +39 -0
- data/lib/aws_dump.rb +11 -0
- metadata +115 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Joshua Bussdieker
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# AwsDump
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'aws_dump'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install aws_dump
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/aws_dump.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'aws_dump/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "aws_dump"
|
8
|
+
spec.version = AwsDump::VERSION
|
9
|
+
spec.authors = ["Joshua Bussdieker"]
|
10
|
+
spec.email = ["jbussdieker@gmail.com"]
|
11
|
+
spec.summary = %q{Dump AWS data from API}
|
12
|
+
spec.homepage = "https://github.com/jbussdieker/aws_dump"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files`.split($/)
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
21
|
+
spec.add_development_dependency "rake"
|
22
|
+
|
23
|
+
spec.add_runtime_dependency "aws-sdk"
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
module AwsDump
|
4
|
+
class Account < Hash
|
5
|
+
attr_accessor :options
|
6
|
+
|
7
|
+
def initialize(name, options = {})
|
8
|
+
@options = options
|
9
|
+
self[:name] = name
|
10
|
+
AWS.memoize do
|
11
|
+
self[:regions] = regions.sort
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def regions
|
16
|
+
aws.regions.collect do |region|
|
17
|
+
Region.new(self, region)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def aws
|
24
|
+
@aws ||= AWS::EC2.new(@options)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
module AwsDump
|
4
|
+
class Instance < Hash
|
5
|
+
def initialize(parent, instance)
|
6
|
+
@parent = parent
|
7
|
+
@instance = instance
|
8
|
+
self[:name] = instance.tags["Name"] || instance.id
|
9
|
+
self[:public_ip] = instance.public_ip_address
|
10
|
+
self[:private_ip] = instance.private_ip_address
|
11
|
+
self[:instance_type] = instance.instance_type
|
12
|
+
self[:id] = instance.id
|
13
|
+
self[:image_id] = instance.image_id
|
14
|
+
self[:root_device_type] = instance.root_device_type
|
15
|
+
self[:security_groups] = security_groups
|
16
|
+
end
|
17
|
+
|
18
|
+
def security_groups
|
19
|
+
list = []
|
20
|
+
@instance.security_groups.each do |security_group|
|
21
|
+
list << {
|
22
|
+
:name => security_group.name,
|
23
|
+
:id => security_group.id
|
24
|
+
}
|
25
|
+
end
|
26
|
+
list
|
27
|
+
end
|
28
|
+
|
29
|
+
def <=>(other)
|
30
|
+
self[:name] <=> other[:name]
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
|
4
|
+
module AwsDump
|
5
|
+
class IpPermission < Hash
|
6
|
+
def initialize(security_group, ip_permission)
|
7
|
+
@security_group = security_group
|
8
|
+
@ip_permission = ip_permission
|
9
|
+
self[:protocol] = ip_permission.protocol
|
10
|
+
self[:port_range] = ip_permission.port_range
|
11
|
+
self[:groups] = groups
|
12
|
+
self[:ip_ranges] = ip_ranges.sort
|
13
|
+
end
|
14
|
+
|
15
|
+
def protocol_port_range
|
16
|
+
"#{self[:protocol]}-#{self[:port_range]}"
|
17
|
+
end
|
18
|
+
|
19
|
+
def <=>(other)
|
20
|
+
protocol_port_range <=> other.protocol_port_range
|
21
|
+
end
|
22
|
+
|
23
|
+
def groups
|
24
|
+
@ip_permission.groups.collect do |group|
|
25
|
+
{
|
26
|
+
:name => group.name,
|
27
|
+
:id => group.id
|
28
|
+
}
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def ip_ranges
|
33
|
+
@ip_permission.ip_ranges.collect do |ip_range|
|
34
|
+
ip_range
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
module AwsDump
|
4
|
+
class Region < Hash
|
5
|
+
attr_accessor :account
|
6
|
+
|
7
|
+
def initialize(account, region)
|
8
|
+
@account = account
|
9
|
+
@region = region
|
10
|
+
self[:name] = region.name
|
11
|
+
self[:vpcs] = vpcs.sort
|
12
|
+
self[:instances] = instances.sort
|
13
|
+
self[:security_groups] = security_groups.sort
|
14
|
+
self[:rds_instances] = rds_instances
|
15
|
+
end
|
16
|
+
|
17
|
+
def <=>(other)
|
18
|
+
self[:name] <=> other[:name]
|
19
|
+
end
|
20
|
+
|
21
|
+
def vpcs
|
22
|
+
@region.vpcs.collect do |vpc|
|
23
|
+
VPC.new(self, vpc)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def rds_instances
|
28
|
+
rds = AWS::RDS.new(@account.options.merge(:region => self[:name]))
|
29
|
+
rds.instances.collect do |instance|
|
30
|
+
unless instance.vpc_id
|
31
|
+
RDSInstance.new(self, instance)
|
32
|
+
end
|
33
|
+
end.compact
|
34
|
+
end
|
35
|
+
|
36
|
+
def instances
|
37
|
+
@region.instances.collect do |instance|
|
38
|
+
unless instance.subnet_id
|
39
|
+
Instance.new(self, instance)
|
40
|
+
end
|
41
|
+
end.compact
|
42
|
+
end
|
43
|
+
|
44
|
+
def security_groups
|
45
|
+
@region.security_groups.collect do |security_group|
|
46
|
+
unless security_group.vpc_id
|
47
|
+
SecurityGroup.new(self, security_group)
|
48
|
+
end
|
49
|
+
end.compact
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
module AwsDump
|
4
|
+
class SecurityGroup < Hash
|
5
|
+
def initialize(parent, security_group)
|
6
|
+
@parent = parent
|
7
|
+
@security_group = security_group
|
8
|
+
self[:name] = security_group.name
|
9
|
+
self[:id] = security_group.id
|
10
|
+
self[:ingress_rules] = ingress_rules.sort
|
11
|
+
self[:egress_rules] = egress_rules.sort
|
12
|
+
end
|
13
|
+
|
14
|
+
def <=>(other)
|
15
|
+
self[:name] <=> other[:name]
|
16
|
+
end
|
17
|
+
|
18
|
+
def ingress_rules
|
19
|
+
@security_group.ingress_ip_permissions.collect do |ingress|
|
20
|
+
IpPermission.new(self, ingress)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def egress_rules
|
25
|
+
@security_group.egress_ip_permissions.collect do |egress|
|
26
|
+
IpPermission.new(self, egress)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/aws_dump/vpc.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'aws-sdk'
|
2
|
+
|
3
|
+
module AwsDump
|
4
|
+
class VPC < Hash
|
5
|
+
def initialize(region, vpc)
|
6
|
+
@region = region
|
7
|
+
@vpc = vpc
|
8
|
+
self[:name] = vpc.tags["Name"]
|
9
|
+
self[:instances] = instances.sort
|
10
|
+
self[:security_groups] = security_groups.sort
|
11
|
+
self[:rds_instances] = rds_instances
|
12
|
+
end
|
13
|
+
|
14
|
+
def <=>(other)
|
15
|
+
self[:name] <=> other[:name]
|
16
|
+
end
|
17
|
+
|
18
|
+
def instances
|
19
|
+
@vpc.instances.collect do |instance|
|
20
|
+
Instance.new(self, instance)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def security_groups
|
25
|
+
@vpc.security_groups.collect do |security_group|
|
26
|
+
SecurityGroup.new(self, security_group)
|
27
|
+
end.compact
|
28
|
+
end
|
29
|
+
|
30
|
+
def rds_instances
|
31
|
+
rds = AWS::RDS.new(@region.account.options.merge(:region => @region[:name]))
|
32
|
+
rds.instances.collect do |instance|
|
33
|
+
unless instance.vpc_id == @vpc.id
|
34
|
+
RDSInstance.new(self, instance)
|
35
|
+
end
|
36
|
+
end.compact
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
data/lib/aws_dump.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require "aws_dump/version"
|
2
|
+
require "aws_dump/account"
|
3
|
+
require "aws_dump/region"
|
4
|
+
require "aws_dump/vpc"
|
5
|
+
require "aws_dump/security_group"
|
6
|
+
require "aws_dump/ip_permission"
|
7
|
+
require "aws_dump/instance"
|
8
|
+
require "aws_dump/rds_instance"
|
9
|
+
|
10
|
+
module AwsDump
|
11
|
+
end
|
metadata
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws_dump
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Joshua Bussdieker
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-12-12 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: aws-sdk
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description:
|
63
|
+
email:
|
64
|
+
- jbussdieker@gmail.com
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- .gitignore
|
70
|
+
- Gemfile
|
71
|
+
- LICENSE.txt
|
72
|
+
- README.md
|
73
|
+
- Rakefile
|
74
|
+
- aws_dump.gemspec
|
75
|
+
- lib/aws_dump.rb
|
76
|
+
- lib/aws_dump/account.rb
|
77
|
+
- lib/aws_dump/instance.rb
|
78
|
+
- lib/aws_dump/ip_permission.rb
|
79
|
+
- lib/aws_dump/rds_instance.rb
|
80
|
+
- lib/aws_dump/region.rb
|
81
|
+
- lib/aws_dump/security_group.rb
|
82
|
+
- lib/aws_dump/version.rb
|
83
|
+
- lib/aws_dump/vpc.rb
|
84
|
+
homepage: https://github.com/jbussdieker/aws_dump
|
85
|
+
licenses:
|
86
|
+
- MIT
|
87
|
+
post_install_message:
|
88
|
+
rdoc_options: []
|
89
|
+
require_paths:
|
90
|
+
- lib
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ! '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
segments:
|
98
|
+
- 0
|
99
|
+
hash: 1623654665316493287
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ! '>='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
segments:
|
107
|
+
- 0
|
108
|
+
hash: 1623654665316493287
|
109
|
+
requirements: []
|
110
|
+
rubyforge_project:
|
111
|
+
rubygems_version: 1.8.25
|
112
|
+
signing_key:
|
113
|
+
specification_version: 3
|
114
|
+
summary: Dump AWS data from API
|
115
|
+
test_files: []
|