From 416b4ade381e34a30a3e5f8336376c86dc88e1e6 Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Fri, 22 Mar 2019 16:47:22 +0100 Subject: [PATCH] feat(google-cloud): Add an example configuration for Google Cloud Healthcare (you may need to enable the Cloud Resource Manager API) --- config/oidc-googleCloud.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 config/oidc-googleCloud.json diff --git a/config/oidc-googleCloud.json b/config/oidc-googleCloud.json new file mode 100644 index 000000000..d8e2acc84 --- /dev/null +++ b/config/oidc-googleCloud.json @@ -0,0 +1,25 @@ +{ + "public": { + "clientOnly": true, + "googleCloud": true, + "ui": { + "studyListFunctionsEnabled": true, + "studyListDateFilterNumDays": false + }, + "servers": { + "dicomWeb": [] + }, + "custom": { + "oidc": [{ + "authServerUrl": "https://accounts.google.com", + "authRedirectUri": "/_oauth/google", + "postLogoutRedirectUri": "/", + "clientId": "YOURCLIENTID.apps.googleusercontent.com", + "scope": "email profile openid https://www.googleapis.com/auth/cloud-platform.read-only https://www.googleapis.com/auth/cloud-healthcare", + "revokeUrl": "https://accounts.google.com/o/oauth2/revoke?token=" + }] + }, + "userAuthenticationRoutesEnabled": false, + "demoMode": false + } +}