soror 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +23 -3
- data/lib/soror/ec2/instance.rb +1 -1
- data/lib/soror/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99ce1c99d1b38245fc74bfef5dc527df19106ab0
|
|
4
|
+
data.tar.gz: 06a1da98ba2918a3be328f7bac98860e06f31e37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a79c6bbcc5956a6bcc0da8164eb73ccf1a8afa3412f698c7177dbd5e94f790c591935baa878ae70ef9f48ed9498655ef7196d6bf8dcac61564b495ca3626a51
|
|
7
|
+
data.tar.gz: 9172e10f58adcb37f6e8a5ac0a1670a67393ece4f444f5785bf277fd052e421f32f31e8378a0a3eb62b90840a06e707fd990d00bde01a6e117ee8c060b3267fb
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Soror
|
|
2
2
|
|
|
3
|
-
Soror is EC2 instances searcher, EC2 instances
|
|
3
|
+
Soror is EC2 instances searcher, EC2 instances are searched by tags
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -21,10 +21,30 @@ Or install it yourself as:
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
|
-
# Search for EC2 instances
|
|
24
|
+
# Search for EC2 instances which have the tag `{ "Key": "name", "Value": "soror" }`
|
|
25
25
|
# You can use methods of AWS::EC2::Instance to an element of return value
|
|
26
26
|
# See http://docs.aws.amazon.com/AWSRubySDK/latest/AWS/EC2/Instance.html
|
|
27
|
-
Soror::EC2::Instance.search_by(
|
|
27
|
+
Soror::EC2::Instance.search_by(name: 'soror') #=> [<AWS::EC2::Instance>, ...]
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Configuration
|
|
31
|
+
|
|
32
|
+
```ruby
|
|
33
|
+
Soror.config(access_key_id: 'xxxxx', secret_access_key: 'xxxxx', region: 'ap-northeast-1')
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Required permissions
|
|
37
|
+
|
|
38
|
+
```js
|
|
39
|
+
{
|
|
40
|
+
"Statement": [
|
|
41
|
+
{
|
|
42
|
+
"Effect": "Allow",
|
|
43
|
+
"Action": "ec2:Describe*",
|
|
44
|
+
"Resource": "*"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
28
48
|
```
|
|
29
49
|
|
|
30
50
|
## Contributing
|
data/lib/soror/ec2/instance.rb
CHANGED
data/lib/soror/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: soror
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kirikiriyamama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|