Skip to content

Commit

Permalink
Resource Owner Password Credentials flow
Browse files Browse the repository at this point in the history
  • Loading branch information
glasstiger committed Oct 15, 2024
1 parent 14905c7 commit 580e259
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 42 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 580e259

Please sign in to comment.