aws-mfa-secure 0.3.3 → 0.3.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/.gitignore +1 -0
- data/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/lib/aws_mfa_secure/base.rb +1 -2
- data/lib/aws_mfa_secure/help/clean.md +5 -0
- data/lib/aws_mfa_secure/session.rb +3 -4
- data/lib/aws_mfa_secure/version.rb +1 -1
- metadata +2 -2
- data/Gemfile.lock +0 -82
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 563b4c8779985cea417d47a059ef5d0b19fac15b85ad09286519d9a9efd319e6
|
|
4
|
+
data.tar.gz: 45afef64714aa58869fc76ca35f28d220a92413a292b47846bd1b82a48b7f82d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5fa68aedf4a6ecf2e4e86da6ee93eb313a3dd2fc81e5e3349cad69ee738d6e727c86da34e6fa7beac2f4e212d41d32a920b8c6c25b6c6a90d4ac39eb94ad43b
|
|
7
|
+
data.tar.gz: 845f1152b4c568492f39433de7435e1be16ee6cd23a2aca82eee7f940811f20962de0d533ffb2d08a518bd102ec1810fbefee91d34dc6e4620b9d0cb6851cccb
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.3.4]
|
|
7
|
+
- always set AWS_* env vars when in iam_mfa mode
|
|
8
|
+
|
|
6
9
|
## [0.3.3]
|
|
7
10
|
- fix aws_cli_installed? check
|
|
8
11
|
|
data/README.md
CHANGED
|
@@ -93,7 +93,7 @@ You can eval it to set the environment variables in one go. Note, the MFA code p
|
|
|
93
93
|
|
|
94
94
|
If you're using the `aws-mfa-secure exports` command, the `aws-mfa-secure unsets` command is useful to unset the `AWS_*` env variables quickly. For more info: `aws-mfa-secure unsets -h`.
|
|
95
95
|
|
|
96
|
-
## AWS Extension
|
|
96
|
+
## Ruby AWS SDK Extension
|
|
97
97
|
|
|
98
98
|
You can also use `aws-mfa-secure` to add MFA support to Ruby libraries. Do so by requiring the `aws_mfa_secure/ext/aws`.
|
|
99
99
|
|
data/lib/aws_mfa_secure/base.rb
CHANGED
|
@@ -16,10 +16,9 @@ module AwsMfaSecure
|
|
|
16
16
|
save_creds(resp.credentials.to_h)
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
ENV['
|
|
21
|
-
ENV['
|
|
22
|
-
ENV['AWS_SESSION_TOKEN'] ||= credentials["session_token"]
|
|
19
|
+
ENV['AWS_ACCESS_KEY_ID'] = credentials["access_key_id"]
|
|
20
|
+
ENV['AWS_SECRET_ACCESS_KEY'] = credentials["secret_access_key"]
|
|
21
|
+
ENV['AWS_SESSION_TOKEN'] = credentials["session_token"]
|
|
23
22
|
exec(*@argv)
|
|
24
23
|
end
|
|
25
24
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-mfa-secure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
@@ -176,7 +176,6 @@ files:
|
|
|
176
176
|
- ".rspec"
|
|
177
177
|
- CHANGELOG.md
|
|
178
178
|
- Gemfile
|
|
179
|
-
- Gemfile.lock
|
|
180
179
|
- Guardfile
|
|
181
180
|
- LICENSE.txt
|
|
182
181
|
- README.md
|
|
@@ -198,6 +197,7 @@ files:
|
|
|
198
197
|
- lib/aws_mfa_secure/exports.rb
|
|
199
198
|
- lib/aws_mfa_secure/ext/aws.rb
|
|
200
199
|
- lib/aws_mfa_secure/help.rb
|
|
200
|
+
- lib/aws_mfa_secure/help/clean.md
|
|
201
201
|
- lib/aws_mfa_secure/help/completion.md
|
|
202
202
|
- lib/aws_mfa_secure/help/completion_script.md
|
|
203
203
|
- lib/aws_mfa_secure/help/exports.md
|
data/Gemfile.lock
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
aws-mfa-secure (0.1.0)
|
|
5
|
-
activesupport
|
|
6
|
-
aws-sdk-core
|
|
7
|
-
memoist
|
|
8
|
-
rainbow
|
|
9
|
-
thor
|
|
10
|
-
zeitwerk
|
|
11
|
-
|
|
12
|
-
GEM
|
|
13
|
-
remote: https://rubygems.org/
|
|
14
|
-
specs:
|
|
15
|
-
activesupport (6.0.1)
|
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
-
i18n (>= 0.7, < 2)
|
|
18
|
-
minitest (~> 5.1)
|
|
19
|
-
tzinfo (~> 1.1)
|
|
20
|
-
zeitwerk (~> 2.2)
|
|
21
|
-
aws-eventstream (1.0.3)
|
|
22
|
-
aws-partitions (1.237.0)
|
|
23
|
-
aws-sdk-core (3.76.0)
|
|
24
|
-
aws-eventstream (~> 1.0, >= 1.0.2)
|
|
25
|
-
aws-partitions (~> 1, >= 1.228.0)
|
|
26
|
-
aws-sigv4 (~> 1.1)
|
|
27
|
-
jmespath (~> 1.0)
|
|
28
|
-
aws-sigv4 (1.1.0)
|
|
29
|
-
aws-eventstream (~> 1.0, >= 1.0.2)
|
|
30
|
-
byebug (11.0.1)
|
|
31
|
-
cli_markdown (0.1.0)
|
|
32
|
-
codeclimate-test-reporter (1.0.9)
|
|
33
|
-
simplecov (<= 0.13)
|
|
34
|
-
concurrent-ruby (1.1.5)
|
|
35
|
-
diff-lcs (1.3)
|
|
36
|
-
docile (1.1.5)
|
|
37
|
-
i18n (1.7.0)
|
|
38
|
-
concurrent-ruby (~> 1.0)
|
|
39
|
-
jmespath (1.4.0)
|
|
40
|
-
json (2.2.0)
|
|
41
|
-
memoist (0.16.1)
|
|
42
|
-
minitest (5.13.0)
|
|
43
|
-
rainbow (3.0.0)
|
|
44
|
-
rake (13.0.0)
|
|
45
|
-
rspec (3.9.0)
|
|
46
|
-
rspec-core (~> 3.9.0)
|
|
47
|
-
rspec-expectations (~> 3.9.0)
|
|
48
|
-
rspec-mocks (~> 3.9.0)
|
|
49
|
-
rspec-core (3.9.0)
|
|
50
|
-
rspec-support (~> 3.9.0)
|
|
51
|
-
rspec-expectations (3.9.0)
|
|
52
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
53
|
-
rspec-support (~> 3.9.0)
|
|
54
|
-
rspec-mocks (3.9.0)
|
|
55
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
56
|
-
rspec-support (~> 3.9.0)
|
|
57
|
-
rspec-support (3.9.0)
|
|
58
|
-
simplecov (0.13.0)
|
|
59
|
-
docile (~> 1.1.0)
|
|
60
|
-
json (>= 1.8, < 3)
|
|
61
|
-
simplecov-html (~> 0.10.0)
|
|
62
|
-
simplecov-html (0.10.2)
|
|
63
|
-
thor (0.20.3)
|
|
64
|
-
thread_safe (0.3.6)
|
|
65
|
-
tzinfo (1.2.5)
|
|
66
|
-
thread_safe (~> 0.1)
|
|
67
|
-
zeitwerk (2.2.1)
|
|
68
|
-
|
|
69
|
-
PLATFORMS
|
|
70
|
-
ruby
|
|
71
|
-
|
|
72
|
-
DEPENDENCIES
|
|
73
|
-
aws-mfa-secure!
|
|
74
|
-
bundler
|
|
75
|
-
byebug
|
|
76
|
-
cli_markdown
|
|
77
|
-
codeclimate-test-reporter
|
|
78
|
-
rake
|
|
79
|
-
rspec
|
|
80
|
-
|
|
81
|
-
BUNDLED WITH
|
|
82
|
-
2.0.2
|