diff --git a/technical-guide/configuration.md b/technical-guide/configuration.md index 3dd777f..3a38331 100644 --- a/technical-guide/configuration.md +++ b/technical-guide/configuration.md @@ -75,10 +75,7 @@ https:///api/auth/oauth/gitlab/callback #### Google -Allow use google as oauth provider: - - -On backend: +Allows integrating with Google as OAuth provider: ```bash # Backend & Frontend @@ -88,9 +85,9 @@ PENPOT_GOOGLE_CLIENT_ID= PENPOT_GOOGLE_CLIENT_SECRET= ``` -#### Gitlab +#### GitLab -Allows use gitlab as oauth provider: +Allows integrating with GitLab as OAuth provider: ```bash # Backend & Frontend @@ -101,10 +98,9 @@ PENPOT_GITLAB_BASE_URI=https://gitlab.com PENPOT_GITLAB_CLIENT_SECRET= ``` -#### Github - -Allows use github as oauth provider: +#### GitHub +Allows integrating with GitHub as OAuth provider: ```bash # Backend & Frontend @@ -118,8 +114,8 @@ PENPOT_GITHUB_CLIENT_SECRET= **NOTE:** Since version 1.5.0 -Allow integrate with a generic authentication provider that implements -the OIDC protocol (usualy used for SSO). +Allows integrating with a generic authentication provider that implements +the OIDC protocol (usually used for SSO). All the other options are backend only: @@ -158,6 +154,18 @@ Since version 1.6.0: PENPOT_OIDC_SCOPES="scope1 scope2" ``` +#### Azure Active Directory using OpenID Connect + +Allows integrating with Azure Active Directory as authentication provider: + +```bash +# Backend & Frontend +PENPOT_OIDC_CLIENT_ID= + +## Backend only +PENPOT_OIDC_BASE_URI=https://login.microsoftonline.com//v2.0/ +PENPOT_OIDC_CLIENT_SECRET= +``` ### LDAP ###