Is there an Elm library that does CORS signed uploads to AWS S3? Motivation is you want media uploads to go straight to your S3 buckets, not hammer your web/app server.
Here is how you do it over curl.
One answer on doing regular file uploads in Elm.
Answer on how to do it with JQuery File Upload.
Also looking for a Haskell library on the server side to do the signing, as it doesn't seem that Amazonka's S3 does the CORS signing yet. Looks like I might have to FFI or shell out for that part just to get going.