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/lib/active_storage | |
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/lib/active_storage')
-rw-r--r-- | activestorage/lib/active_storage/service/s3_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activestorage/lib/active_storage/service/s3_service.rb b/activestorage/lib/active_storage/service/s3_service.rb index 8ab7a44131..5e489f4be1 100644 --- a/activestorage/lib/active_storage/service/s3_service.rb +++ b/activestorage/lib/active_storage/service/s3_service.rb @@ -9,8 +9,8 @@ module ActiveStorage class Service::S3Service < Service attr_reader :client, :bucket, :upload_options - def initialize(access_key_id:, secret_access_key:, region:, bucket:, upload: {}, **options) - @client = Aws::S3::Resource.new(access_key_id: access_key_id, secret_access_key: secret_access_key, region: region, **options) + def initialize(bucket:, upload: {}, **options) + @client = Aws::S3::Resource.new(**options) @bucket = @client.bucket(bucket) @upload_options = upload |