aws_su 0.1.4 → 0.1.5
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 +1 -1
- 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: 47ae8fd3acc38efea5cf1c47dc6c4e2a7896d7969e526920601a9ac30423b92f
|
4
|
+
data.tar.gz: 7f7d088b4bc4ff2ad97113269639d7f7b8448d48aca0b05732f64270e481e0e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f73d505b5887b1de0b8528377cfec38152598b7bd9a7070869e9c3a5bfa4fce7b08cf011d9e85a635e31bf8b3cd477f4252684189fa2705bde982c262d20a440
|
7
|
+
data.tar.gz: c7951bc8fd8c129c39ff1ec44259889231f2763b914d22113101e82698e3ac789d527724d183cb8eb4f26a01fc7fd4b831874f64fdabc571c7e0bcd29bca32b9
|
data/CHANGELOG.md
CHANGED
@@ -22,4 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
22
22
|
- Order of precedence for setting region
|
23
23
|
1. As optional argument to authenticate()
|
24
24
|
2. Active profile in ~/.aws/config
|
25
|
-
3. First profile in ~/.aws/config
|
25
|
+
3. First profile in ~/.aws/config
|
26
|
+
|
27
|
+
## [0.1.5] - 03-12-2018
|
28
|
+
### Added
|
29
|
+
- Added export of AWS_DEFAULT_REGION
|
data/lib/aws_su.rb
CHANGED
@@ -181,7 +181,7 @@ module AwsSu
|
|
181
181
|
ENV['AWS_SECURITY_TOKEN'] = config.credentials.session_token
|
182
182
|
ENV['AWS_TOKEN_TTL'] = @token_ttl
|
183
183
|
ENV['AWS_PROFILE'] = @profile
|
184
|
-
ENV['
|
184
|
+
ENV['AWS_DEFAULT_REGION'] = @region
|
185
185
|
end
|
186
186
|
|
187
187
|
# Load the user's AWS Secrets
|
data/lib/aws_su/version.rb
CHANGED