Skip to content

Fix typo + new NodeJS version #410

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

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws-node-auth0-custom-authorizers-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Custom Authorizers allow you to run an AWS Lambda Function before your targeted

4. Get your `public key` (under `applications->${YOUR_APP_NAME}->settings->Show Advanced Settings->Certificates->DOWNLOAD CERTIFICATE`). Download it as `PEM` format and save it as a new file called `public_key`

5. Deploy the service with `serverless-deploy` and grab the public and private endpoints.
5. Deploy the service with `serverless deploy` and grab the public and private endpoints.

6. Plugin your `AUTH0_CLIENT_ID`, `AUTH0_DOMAIN`, and the `PUBLIC_ENDPOINT` + `PRIVATE_ENDPOINT` from aws in top of the `frontend/app.js` file.

Expand Down
2 changes: 1 addition & 1 deletion aws-node-auth0-custom-authorizers-api/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins:

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
region: us-west-2
environment:
AUTH0_CLIENT_ID: ${file(./secrets.json):AUTH0_CLIENT_ID}
Expand Down