You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While troubleshooting some access issues, I discovered that aws.signature::locate_credentials() is reporting my region as us-east-1, while I can verify that us-east-1 appears no where in my .aws profile, any stray environment variables, Renviorn, etc.
edit: I should stress that my profile config explicitly sets my default region to us-west-2, which is the region I'd expect to see reported.
Please specify whether your issue is about:
a possible bug
a question about package functionality
a suggested code or documentation change, improvement to the code, or feature request
Put your code here:
## load package
library("aws.s3")
## code goes hereaws.signature::locate_credentials()
$key
[1] "xxx"$secret
[1] "xxx"$session_tokenNULL$region
[1] "us-east-1"## session info for your system
sessionInfo()
Rversion3.6.3 (2020-02-29)
Platform:x86_64-apple-darwin17.7.0 (64-bit)
Runningunder:macOSHighSierra10.13.6Matrixproducts:defaultBLAS:/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylibLAPACK:/usr/local/Cellar/openblas/0.3.9/lib/libopenblasp-r0.3.9.dyliblocale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8attachedbasepackages:
[1] statsgraphicsgrDevicesutilsdatasetsmethodsbaseloadedviaa namespace (andnotattached):
[1] compiler_3.6.3aws.ec2metadata_0.2.0tools_3.6.3base64enc_0.1-3curl_4.3aws.signature_0.5.2jsonlite_1.6.1
[8] digest_0.6.25packrat_0.5.0
The text was updated successfully, but these errors were encountered:
This is a known issue. As it stands right now aws.signature doesn't read in .aws/config (#53). At the moment, as a work around, you can either set the AWS_DEFAULT_REGION env variable, or set the option(cloudyr.aws.default_region = 'us-west-2') before you use a method.
Hey there. I may have encountered a bug.
While troubleshooting some access issues, I discovered that
aws.signature::locate_credentials()
is reporting my region asus-east-1
, while I can verify thatus-east-1
appears no where in my.aws
profile, any stray environment variables, Renviorn, etc.edit: I should stress that my profile config explicitly sets my default region to
us-west-2
, which is the region I'd expect to see reported.Please specify whether your issue is about:
Put your code here:
The text was updated successfully, but these errors were encountered: