We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From @chrowe via cloudyr/aws.s3#240
Please specify whether your issue is about:
Is it possible to retrieve S3 credentials using the config package instead of environment variables without have to specify them every time?
Put your code here: I know that I can set them inline like this... config.yml
default: s3: bucket: 'my_bucket' key: YOUR_AWS_ACCESS_KEY secret: YOUR_AWS_SECRET_ACCESS_KEY
R code
s3conf <- config::get("s3") get_bucket( bucket = s3conf$bucket, key = s3conf$key, secret = s3conf$secret )
But it would be nice to be able to just set that once like you can with Sys.setenv
The text was updated successfully, but these errors were encountered:
I think the default .aws/config should be used instead of inventing custom configurations options. #53
Sorry, something went wrong.
No branches or pull requests
From @chrowe via cloudyr/aws.s3#240
Please specify whether your issue is about:
Is it possible to retrieve S3 credentials using the config package instead of environment variables without have to specify them every time?
Put your code here:
I know that I can set them inline like this...
config.yml
R code
But it would be nice to be able to just set that once like you can with Sys.setenv
The text was updated successfully, but these errors were encountered: