I\'m trying to use Paperclip and SWS S3 on Heroku to let users upload images.
I do not have my credentials stored in a yml file. I\'ve followed the instructions on t
Scott, sorry if there was any confusion here.
I am the author of the Dev Center article. As B Seven stated above the AWS Config Vars need to be set on the Heroku application.
Heroku has recently updated their documentation (https://devcenter.heroku.com/articles/config-vars#example) and set is preferred over add going forward.
$ heroku config:set AWS_BUCKET=your_bucket_name
$ heroku config:set AWS_ACCESS_KEY_ID=your_access_key_id
$ heroku config:set AWS_SECRET_ACCESS_KEY=your_secret_access_key