aws-controller 0.0.1 → 0.0.2
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/README.md +16 -2
- data/lib/aws-controller/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Aws::Controller
|
2
2
|
|
3
|
-
|
3
|
+
A controller for vpc instances
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -16,9 +16,23 @@ Or install it yourself as:
|
|
16
16
|
|
17
17
|
$ gem install aws-controller
|
18
18
|
|
19
|
+
Add ~/.aws.yml configuration file, like this:
|
20
|
+
vpc_id: ''
|
21
|
+
security_groups:
|
22
|
+
- ''
|
23
|
+
subnet_id: ''
|
24
|
+
key_pair_name: ''
|
25
|
+
access_key_id: ''
|
26
|
+
secret_access_key: ''
|
27
|
+
|
19
28
|
## Usage
|
20
29
|
|
21
|
-
|
30
|
+
*Create image from instance
|
31
|
+
*Create new instance from image connected to vpc(+ add tags)
|
32
|
+
*Destroy instance
|
33
|
+
*List instances of given environment with statuses(app and stage)
|
34
|
+
*Restart all instances of given app and environment
|
35
|
+
*Stop/start all instances of given app and environment
|
22
36
|
|
23
37
|
## Contributing
|
24
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-controller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-11-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aws-sdk
|
16
|
-
requirement: &
|
16
|
+
requirement: &69275570 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *69275570
|
25
25
|
description: aws controller
|
26
26
|
email:
|
27
27
|
- rivka.tzur@quicklizard.com
|