diff options
author | Brian Knight <brianknight10@gmail.com> | 2018-03-19 11:25:40 -0400 |
---|---|---|
committer | Andrew White <pixeltrix@users.noreply.github.com> | 2018-03-19 15:25:40 +0000 |
commit | c1600009b2bbb3b67db20ddb14fef34d4cfa82bc (patch) | |
tree | de8feeed47f1130158deba421175f266feb08c1c /activestorage/test/service | |
parent | db8cce202b8e81154773e5195a3ae35e873427e6 (diff) | |
download | rails-c1600009b2bbb3b67db20ddb14fef34d4cfa82bc.tar.gz rails-c1600009b2bbb3b67db20ddb14fef34d4cfa82bc.tar.bz2 rails-c1600009b2bbb3b67db20ddb14fef34d4cfa82bc.zip |
Allow full use of the AWS S3 SDK authentication options (#32270)
If an explicit AWS key pair and/or region is not provided in
config/storage.yml, attempt to use environment variables, shared
credentials, or IAM role credentials. Order of precedence is
determined by the AWS SDK[1].
[1]: https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html
Diffstat (limited to 'activestorage/test/service')
-rw-r--r-- | activestorage/test/service/s3_service_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/test/service/s3_service_test.rb b/activestorage/test/service/s3_service_test.rb index d6996209d2..7833e51122 100644 --- a/activestorage/test/service/s3_service_test.rb +++ b/activestorage/test/service/s3_service_test.rb @@ -3,7 +3,7 @@ require "service/shared_service_tests" require "net/http" -if SERVICE_CONFIGURATIONS[:s3] && SERVICE_CONFIGURATIONS[:s3][:access_key_id].present? +if SERVICE_CONFIGURATIONS[:s3] class ActiveStorage::Service::S3ServiceTest < ActiveSupport::TestCase SERVICE = ActiveStorage::Service.configure(:s3, SERVICE_CONFIGURATIONS) |