From ddc7e094b5adef2b242a29264206b90fd62e878c Mon Sep 17 00:00:00 2001 From: Andrew Thauer <6507159+andrewthauer@users.noreply.github.com> Date: Sun, 10 Jan 2021 08:13:58 -0500 Subject: [PATCH] docs: update okta auth readme --- .github/styles/vocab.txt | 1 + plugins/auth-backend/README.md | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/styles/vocab.txt b/.github/styles/vocab.txt index 2281fcd168..29df243e23 100644 --- a/.github/styles/vocab.txt +++ b/.github/styles/vocab.txt @@ -145,6 +145,7 @@ nvm oauth OAuth oidc +okta Okta Oldsberg onboarding diff --git a/plugins/auth-backend/README.md b/plugins/auth-backend/README.md index ee6e84cded..49d8d52fd3 100644 --- a/plugins/auth-backend/README.md +++ b/plugins/auth-backend/README.md @@ -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 ```