aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
2019-10-20T14:20:43.036600Z

Late reply @dotemacs, I use Cognito Identity Pools for S3 access control allowing cljs web app users to interact directly to S3. It is important to understand the difference between the User and Identity Pools and also to get your User Pool attribute mapping configured correctly before production use as any configuration changes are not allowed after user pool creation. While Auth0 has a much more mature developer experience, they deprecated their SAML-based approach to integrating with AWS services such as S3 (in short, the ability to reference a OIDC ‘sub’ value in the IAM role, such as ’“arn:aws:s3:::bucket-name/${http://cognito-identity.amazonaws.com:sub}/*“’). If you don’t plan to have your web app interact directly with AWS services then Auth0 may be a better choice.

dotemacs 2019-10-20T16:24:01.037200Z

@bskinny thanks for the answer :)