awskeyring 0.0.3 → 0.0.4
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/CHANGELOG.md +2 -2
- data/README.md +16 -0
- data/Rakefile +3 -1
- data/lib/awskeyring/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: ccf8f7a584af54361cdc4250f47816e498f3a965
|
|
4
|
+
data.tar.gz: e66a63bf9340c2f984237481b371b72d9c09daf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17c8af8530dfd2bf2962017afaeff0c6b7e68c59ae825982eefc932ae404e46a9b860daeeba20d2cc2b2f02bca8790d4687910859421c87f5af099f3232632b8
|
|
7
|
+
data.tar.gz: 19992ac28d7960adcab400f9961398f3e3a34e9d17d635aa06493cb45268c27dd15dac89f8c2f48c558643c0d754fa593e312e8d7eb7fed5c848a5c77ada4ffa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
4
|
-
[Full Changelog](https://github.com/vibrato/awskeyring/compare/v0.0.2...
|
|
3
|
+
## [v0.0.3](https://github.com/vibrato/awskeyring/tree/v0.0.3) (2018-01-28)
|
|
4
|
+
[Full Changelog](https://github.com/vibrato/awskeyring/compare/v0.0.2...v0.0.3)
|
|
5
5
|
|
|
6
6
|
**Implemented enhancements:**
|
|
7
7
|
|
data/README.md
CHANGED
|
@@ -16,6 +16,22 @@ from the Terminal, and to provide useful functions like assuming roles.
|
|
|
16
16
|
For Enterprise environments there are better suited tools to use
|
|
17
17
|
like [HashiCorp Vault](https://vaultproject.io/).
|
|
18
18
|
|
|
19
|
+
## Quick start
|
|
20
|
+
|
|
21
|
+
First you need to initialise your keychain to hold your AWS credentials.
|
|
22
|
+
|
|
23
|
+
awskeyring initialise
|
|
24
|
+
|
|
25
|
+
Then add your keys to it.
|
|
26
|
+
|
|
27
|
+
awskeyring add personal-aws
|
|
28
|
+
|
|
29
|
+
Now your keys are stored safely in the macOS keychain. To print environment variables run...
|
|
30
|
+
|
|
31
|
+
awskeyring env personal-aws
|
|
32
|
+
|
|
33
|
+
See below and in the wiki for more details on usage.
|
|
34
|
+
|
|
19
35
|
## Installation
|
|
20
36
|
|
|
21
37
|
Install it with:
|
data/Rakefile
CHANGED
|
@@ -3,7 +3,9 @@ require 'rspec/core/rake_task'
|
|
|
3
3
|
require 'rubocop/rake_task'
|
|
4
4
|
require 'github_changelog_generator/task'
|
|
5
5
|
|
|
6
|
-
GitHubChangelogGenerator::RakeTask.new :changelog
|
|
6
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
7
|
+
config.future_release = "v#{Awskeyring::VERSION}"
|
|
8
|
+
end
|
|
7
9
|
|
|
8
10
|
RuboCop::RakeTask.new do |rubocop|
|
|
9
11
|
rubocop.options = ['-D']
|
data/lib/awskeyring/version.rb
CHANGED