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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -18
  3. data/lib/omc/cli.rb +1 -1
  4. data/lib/omc/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8040fb7117bc37c4bd608adf34ea6cd9d1bfa7f
4
- data.tar.gz: a20ba08df738aeb862121505771227ff9820665d
3
+ metadata.gz: dc3cffe813d70187f7415b6ee368a1355301cbb4
4
+ data.tar.gz: 188d8b778d92830e879a016968529ebd133cdd70
5
5
  SHA512:
6
- metadata.gz: 7e52fdf030202cbf70ee84e318e555faeb3c6081c4e13c6b3e34f0e75d196562f1bfa67eda958372afcfaf7deac0bc2915df05c31a09bd2393c24b99f1f672d1
7
- data.tar.gz: c5c53c90d2da261f0d4a8521107ddaa52e8b4b1099d4e2d2af4a3897839f51b8857fb15c866004f5777fed4fba23dea14f988ac1bd6158d32d5f2c300521b11a
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
- TODO: Write a gem description
3
+ Useful commands for dealing with AWS and opsworks across multiple IAM accounts.
4
4
 
5
- ## Installation
6
5
 
7
- Add this line to your application's Gemfile:
6
+ ## Installation
8
7
 
9
- ```ruby
10
- gem 'omc'
8
+ ```
9
+ gem install omc
11
10
  ```
12
11
 
13
- And then execute:
12
+ ### Aws Cred Vault
14
13
 
15
- $ bundle
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
- Or install it yourself as:
16
+ Below is an example of a valid ~/.aws_cred_vault
18
17
 
19
- $ gem install omc
18
+ ```toml
19
+ [accounts.protoss.fenix]
20
+ access_key = "fenix"
21
+ secret = "zealot!"
20
22
 
21
- ## Usage
23
+ [accounts.protoss.tassadar]
24
+ access_key = "tassadar"
25
+ secret = "lightning!"
22
26
 
23
- TODO: Write usage instructions here
27
+ [accounts.terran.raynor]
28
+ access_key = "raynor"
29
+ secret = "abcd1234"
30
+ ```
24
31
 
25
- ## Contributing
32
+ ## Usage
26
33
 
27
- 1. Fork it ( https://github.com/[my-github-username]/omc/fork )
28
- 2. Create your feature branch (`git checkout -b my-new-feature`)
29
- 3. Commit your changes (`git commit -am 'Add some feature'`)
30
- 4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
34
+ ```
35
+ omc help
36
+ ```
@@ -18,7 +18,7 @@ module Omc
18
18
 
19
19
  private
20
20
  def vault
21
- AwsCredVault::Toml.new File.join(ENV['HOME'], '.shoelaces')
21
+ AwsCredVault::Toml.new File.join(ENV['HOME'], '.aws_cred_vault')
22
22
  end
23
23
 
24
24
  def get_by_name collection, name
@@ -1,3 +1,3 @@
1
1
  module Omc
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clarke Brunsdon