omc 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.
- checksums.yaml +4 -4
- data/README.md +23 -18
- data/lib/omc/cli.rb +1 -1
- data/lib/omc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc3cffe813d70187f7415b6ee368a1355301cbb4
|
4
|
+
data.tar.gz: 188d8b778d92830e879a016968529ebd133cdd70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f36c9dff7a20e16e2bb17718c55d6b548ba336fcc67ae1337f7743fa2ec27d34205dbe2b04a6fd1e21ab6a9d798a1b687aebda9b46f7701a34874ba1498fd88
|
7
|
+
data.tar.gz: afaf005acb4df2b401b1015d57109009e98fabe957509772f70aadfbd38f094399c2186997762cdd6947e94d952adf3fab7a3797b7a7d294b65027829c4edfcb
|
data/README.md
CHANGED
@@ -1,31 +1,36 @@
|
|
1
|
-
# Omc
|
1
|
+
# Omc - Opsworks Missing Console
|
2
2
|
|
3
|
-
|
3
|
+
Useful commands for dealing with AWS and opsworks across multiple IAM accounts.
|
4
4
|
|
5
|
-
## Installation
|
6
5
|
|
7
|
-
|
6
|
+
## Installation
|
8
7
|
|
9
|
-
```
|
10
|
-
gem
|
8
|
+
```
|
9
|
+
gem install omc
|
11
10
|
```
|
12
11
|
|
13
|
-
|
12
|
+
### Aws Cred Vault
|
14
13
|
|
15
|
-
|
14
|
+
omc works off of [aws_cred_vault](www.github.com/cbrunsdon/aws_cred_vault) and requires a ~/.aws_cred_vault file to exist. This file should be populated with your different IAM accounts and users.
|
16
15
|
|
17
|
-
|
16
|
+
Below is an example of a valid ~/.aws_cred_vault
|
18
17
|
|
19
|
-
|
18
|
+
```toml
|
19
|
+
[accounts.protoss.fenix]
|
20
|
+
access_key = "fenix"
|
21
|
+
secret = "zealot!"
|
20
22
|
|
21
|
-
|
23
|
+
[accounts.protoss.tassadar]
|
24
|
+
access_key = "tassadar"
|
25
|
+
secret = "lightning!"
|
22
26
|
|
23
|
-
|
27
|
+
[accounts.terran.raynor]
|
28
|
+
access_key = "raynor"
|
29
|
+
secret = "abcd1234"
|
30
|
+
```
|
24
31
|
|
25
|
-
##
|
32
|
+
## Usage
|
26
33
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
-
5. Create a new Pull Request
|
34
|
+
```
|
35
|
+
omc help
|
36
|
+
```
|
data/lib/omc/cli.rb
CHANGED
data/lib/omc/version.rb
CHANGED