Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWS S3 Binding should be able to create presigned urls that can be used for file uploads. #3602

Open
TimothyHarrelson opened this issue Nov 14, 2024 · 0 comments
Labels
kind/enhancement New feature or request

Comments

@TimothyHarrelson
Copy link

Describe the feature

AWS S3 has the capability to create presigned urls which can be used at a later time to upload a file using HTTP Put requests. Currently the S3 binding in Dapr can only create files in s3 if you already have the file data on hand, and cannot generate these upload presigned urls.

This feature would allow services to hand out the presigned url to users rather than uploading the file themselves, which can simplify such services when handling large files, and allowing these services to avoid having to provision sufficient resources to handle the load of receiving or processing large files.

This new operation on the s3 binding should allow for the Content-Type metadata, as the HTTP Put request to upload the file using the presigned url must match the content type used for generate the presigned url. The data or metadata should also allow for the file name, bucket, and key to be passed in, similar to the existing create operation.

Release Note

RELEASE NOTE: ADD New operation for the s3 binding to allow for presigned urls that can be used to upload files.

@TimothyHarrelson TimothyHarrelson added the kind/enhancement New feature or request label Nov 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant