Skip to content
Snippets Groups Projects
Unverified Commit 220e6e00 authored by Maarten de Waard's avatar Maarten de Waard :angel: Committed by Varac
Browse files

add OIDC settings for Dashboard

parent 9ec97d2e
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,8 @@ data:
description: "Wekan Kanban board."
- name: &ZULIP zulip
description: "Communicate and collaborate using team chat and switch to video or audio calls with screen sharing for more efficient teamwork."
- name: &DASHBOARD dashboard
description: "Stackspin dashboard."
username: "${userbackend_admin_username}"
password: "${userbackend_admin_password}"
email: "${admin_email}"
......@@ -180,6 +182,12 @@ data:
scopes: "openid profile email"
clientUri: "https://zulip.${domain}"
clientLogoUri: "https://zulip.${domain}/static/images/zulip-logo.svg"
- clientName: *DASHBOARD
clientSecret: "${dashboard_oauth_client_secret}"
redirectUri: "https://dashboard.${domain}/_oauth/oidc"
scopes: "openid profile email"
clientUri: "https://dashboard.${domain}"
clientLogoUri: "https://dashboard.${domain}/assets/logo.svg"
tokenEndpointAuthMethod: "client_secret_post"
responseTypes:
- "code"
......
......@@ -11,3 +11,4 @@ data:
wekan_oauth_client_secret: "{{ 32 | generate_password | b64encode }}"
wordpress_oauth_client_secret: "{{ 32 | generate_password | b64encode }}"
zulip_oauth_client_secret: "{{ 32 | generate_password | b64encode }}"
dashboard_oauth_client_secret: "{{ 32 | generate_password | b64encode }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment