docs: update okta auth readme

This commit is contained in:
Andrew Thauer
2021-01-10 08:13:58 -05:00
parent 54faa6fa8d
commit ddc7e094b5
2 changed files with 10 additions and 1 deletions
+1
View File
@@ -145,6 +145,7 @@ nvm
oauth
OAuth
oidc
okta
Okta
Oldsberg
onboarding
+9 -1
View File
@@ -89,8 +89,16 @@ export AUTH_GITLAB_CLIENT_SECRET=x
### Okta
Add a new Okta application using the following URI conventions:
Login redirect URI's: http://localhost:7000/api/auth/okta/handler/frame
Logout redirect URI's: http://localhost:7000/api/auth/okta/logout
Initiate login URI's: http://localhost:7000/api/auth/okta/start
Then configure the following environment variables to be used in the `app-config.yaml` file:
```bash
export AUTH_OKTA_AUDIENCE=x
export AUTH_OKTA_AUDIENCE=https://example.okta.com
export AUTH_OKTA_CLIENT_ID=x
export AUTH_OKTA_CLIENT_SECRET=x
```