aws-serverless-auth-reference-app
aws-serverless-auth-reference-app copied to clipboard
Serverless reference app and backend API, showcasing authentication and authorization patterns using Amazon Cognito, Amazon API Gateway, AWS Lambda, and AWS IAM.
I am able to successfully use Cognito User pool, federated identities , APIG and Lambda. I am using AWS_IAM authoriser on APIG, I get the IAM policy and accordingly I...
[2019-01-16T04:41:55.903Z] INFO: spacefinder/20 on 1f1dc08d454a: Creating Lambd a functions from Swagger API definition... [2019-01-16T04:41:56.299Z] ERROR: spacefinder/20 on 1f1dc08d454a: step failed { InvalidParameterValueException: The runtime parameter of nodej s4.3 is no...
I like this project but don't think it would scale well in production. Can you make a branch and/or demo showing how to migrate this project to use AppSync and...
Hi: In current implementation, the lambda execution role policy is coarse-grained, the lambda execution policy should use cognito variable through policy variable to provide fine-grained access control to Amazon DynamoDB...
Hi Justin, I found a bug that does not affect space finder app, but it affects developers that use space finder as the code base to create a mobile app...
The account image is not loaded if you load the app again. It is persisted to s3 but I do not see anything that actually persists the URL for future...
This is from the generated java SDK ``` import com.amazonaws.ImmutableRequest; import spacefinder.auth.SpacefinderUserPoolAuthorizer; public class SpacefinderUserPoolAuthorizerImpl implements SpacefinderUserPoolAuthorizer { @Override public String generateToken(ImmutableRequest request) { return "some-generated-auth-token"; } } ``` Obviously,...
Hi! I am trying to follow through the instructions at https://github.com/awslabs/aws-serverless-auth-reference-app/blob/master/Quickstart.md. I got to the point where I have to run gulp deploy and I get the following error: [2017-12-23T12:54:27.182Z]...
The create_sdk command fails with the error below. I did not see swagger included in the node packages. What is the expectation here? ` [22:04:11] Error: spawn swagger-codegen ENOENT at...
Hi Cognito requires token refresh at least every once per hour. It invalidates token after 1 hour. So my question is this, can this app automatically obtain refreshed token if...