aws_su 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/aws_su.rb +2 -2
- data/lib/aws_su/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8203ddb0c2516d208c85317ca6f6c984fbd7a5139f8615355aec477b127bef18
|
4
|
+
data.tar.gz: 99d425a94c721197b48a686895e7fdb8ac05f23f73966953f7e9dcbba9badd11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e216b1e2038240658db084afdd333e36ab1b849982f58582ee9eeda13655161c688771c21ebec99372a8ab6be3d3879fb4bf8f21b172f4a752e7cce2da1fb894
|
7
|
+
data.tar.gz: b8b28b808b9f89fec0c1f8139ddbc79cafbcfdb6897779479c9bae9a780a02310e6aee8b97c98f15b43abd724d167e707b8258b00c415e2d6a78a6433671d91d
|
data/CHANGELOG.md
CHANGED
@@ -35,4 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
35
35
|
## [0.1.7] - 03-12-2018
|
36
36
|
### Changed
|
37
37
|
- For MFA, export awssudo file
|
38
|
-
- For existing session, export sts creds
|
38
|
+
- For existing session, export sts creds
|
39
|
+
|
40
|
+
## [0.1.8] - 03-12-2018
|
41
|
+
### Removed
|
42
|
+
- Other export of AWS_PROFILE
|
data/lib/aws_su.rb
CHANGED
@@ -166,8 +166,8 @@ module AwsSu
|
|
166
166
|
ENV['AWS_SECURITY_TOKEN'] = line.split('=')[1].strip
|
167
167
|
when MatchesAwsTokenEtl
|
168
168
|
ENV['AWS_TOKEN_TTL'] = line.split('=')[1].strip
|
169
|
-
when MatchesAwsProfile
|
170
|
-
|
169
|
+
# when MatchesAwsProfile
|
170
|
+
# ENV['AWS_PROFILE'] = line.split('=')[1].strip
|
171
171
|
end
|
172
172
|
end
|
173
173
|
end
|
data/lib/aws_su/version.rb
CHANGED