His there an option that can be sent as an argument of Shrine::Storage::S3.new
that sets the use of an IAM Profile to true
, just like Carrierwave does?
For example:
s3_options = {
use_iam_profile: true,
}
Shrine::Storage::S3.new(
upload_options: { server_side_encryption: "AES256" },
**s3_options,
)