Skip to content

Commit

Permalink
Resource Owner Password Credentials flow (#63)
Browse files Browse the repository at this point in the history
- Resource Owner Password Credentials flow documentation
- Update OIDC configuration settings

---------

Co-authored-by: Nick Woolmer <[email protected]>
Co-authored-by: goodroot <[email protected]>
  • Loading branch information
3 people authored Oct 15, 2024
1 parent 33daea1 commit 8085bca
Show file tree
Hide file tree
Showing 3 changed files with 360 additions and 58 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.iml
.idea/
.DS_Store
.vscode/
12 changes: 12 additions & 0 deletions configuration-utils/_oidc.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"default": false,
"description": "Enables/disables OIDC authentication. When enabled, few other configuration options must also be set."
},
"acl.oidc.ropc.flow.enabled": {
"default": false,
"description": "Enables/disables Resource Owner Password Credentials flow."
},
"acl.oidc.host": {
"default": "",
"description": "OIDC provider hostname, required when OIDC is enabled."
Expand Down Expand Up @@ -35,6 +39,14 @@
"default": "",
"description": "Client name assigned to QuestDB in the OIDC server, required when OIDC is enabled."
},
"acl.oidc.redirect.uri": {
"default": "",
"description": "The redirect URI tells the OIDC server where to redirect the user after successful authentication. If not set, the Web Console defaults it to the location where it was loaded from (`window.location.href`)."
},
"acl.oidc.scope": {
"default": "openid",
"description": "The OIDC server should ask consent for the list of scopes provided in this property. The scope `openid` is mandatory, and always should be included."
},
"acl.oidc.authorization.endpoint": {
"default": "/as/authorization.oauth2",
"description": "OIDC Authorization Endpoint, the default value should work for the Ping Identity Platform."
Expand Down
Loading

0 comments on commit 8085bca

Please sign in to comment.