diff options
author | Mark Steele <mark.steele@autodesk.com> | 2018-04-18 11:54:34 -0400 |
---|---|---|
committer | Mark Steele <mark.steele@autodesk.com> | 2018-04-18 11:54:34 -0400 |
commit | 076dab4c5e4d5ea71ae3f28be6711aaceaa2e4a9 (patch) | |
tree | ed1c37e919491212d8b08ac2f2cd94ed82e5d74b | |
parent | cfe8d6b8a3a245179a5df8137e0362d959c35d4c (diff) | |
download | netlify-serverless-oauth2-backend-076dab4c5e4d5ea71ae3f28be6711aaceaa2e4a9.tar.gz netlify-serverless-oauth2-backend-076dab4c5e4d5ea71ae3f28be6711aaceaa2e4a9.tar.zst netlify-serverless-oauth2-backend-076dab4c5e4d5ea71ae3f28be6711aaceaa2e4a9.zip |
doc update
-rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -75,11 +75,11 @@ Head on over to the AWS console, find the Systems manager, and go to the Paramet | |||
75 | 75 | ||
76 | In there, you'll want to create the following parameters/values (as SecureStrings): | 76 | In there, you'll want to create the following parameters/values (as SecureStrings): |
77 | 77 | ||
78 | * /ctrl-alt-del/oauth/<STAGE>/GIT_HOSTNAME - The github host to use. Ex: https://github.com | 78 | * /ctrl-alt-del/oauth/`STAGE`/GIT_HOSTNAME - The github host to use. Ex: https://github.com |
79 | * /ctrl-alt-del/oauth/<STAGE>/OAUTH_TOKEN_PATH - The token api uri path. Most probably this: /login/oauth/access_token | 79 | * /ctrl-alt-del/oauth/`STAGE`/OAUTH_TOKEN_PATH - The token api uri path. Most probably this: /login/oauth/access_token |
80 | * /ctrl-alt-del/oauth/<STAGE>/OAUTH_AUTHORIZE_PATH - The authorize api uri path. Most probably this: /login/oauth/authorize | 80 | * /ctrl-alt-del/oauth/`STAGE`/OAUTH_AUTHORIZE_PATH - The authorize api uri path. Most probably this: /login/oauth/authorize |
81 | * /ctrl-alt-del/oauth/<STAGE>/OAUTH_CLIENT_ID - Your Github OAuth client id | 81 | * /ctrl-alt-del/oauth/`STAGE`/OAUTH_CLIENT_ID - Your Github OAuth client id |
82 | * /ctrl-alt-del/oauth/<STAGE>/OAUTH_CLIENT_SECRET - Your Github OAuth client secret | 82 | * /ctrl-alt-del/oauth/`STAGE`/OAUTH_CLIENT_SECRET - Your Github OAuth client secret |
83 | * /ctrl-alt-del/oauth/<STAGE>/REDIRECT_URL - Your callback URL. It will look something like this: https://RANDOMSTUFF.execute-api.us-east-1.amazonaws.com/<STAGE>/callback | 83 | * /ctrl-alt-del/oauth/`STAGE`/REDIRECT_URL - Your callback URL. It will look something like this: https://`RANDOMSTUFF`.execute-api.us-east-1.amazonaws.com/`STAGE`/callback |
84 | * /ctrl-alt-del/oauth/<STAGE>/OAUTH_SCOPES - The scopes to grant. Probably this: repo,user | 84 | * /ctrl-alt-del/oauth/`STAGE`/OAUTH_SCOPES - The scopes to grant. Probably this: repo,user |
85 | 85 | ||