I'm trying to deploy a shiny app using shiny-server
. That app uses the aws.s3
package to read some files from an S3 bucket, which requires the AWS credentials either be stored in environment variables or in an .Renviron
file.
Understandably, shiny-server scrubs most environment variables before launching R. Is there any way to square this circle? Any other mechanism I could use to pass credentials to aws.s3?
shiny-server
running in AWS? – helloV