Issue
During the build on Travis CI, how can I download files from AmazonS3 bucket using curl with Access Key and Secret Key?
Solution
I'm not familiar with Travis CI, but the only way to download private content via a URL would be to generate an Amazon S3 pre-signed URLs, which is a time-limited URL (so it changes each time).
The preferred method would be to download using the AWS Command-Line Interface (CLI), which manages the security via credentials stored in a configuration file.
Answered By - John Rotenstein