chore: oidc data for the project manager

This commit is contained in:
David Juarez
2026-07-31 12:23:26 +02:00
parent c48589a6d9
commit 848f070cac
2 changed files with 10 additions and 5 deletions
+5
View File
@@ -16,4 +16,9 @@ if [ "$ENABLE_PROJECT_MANAGER" == true ]; then
SQL_GUI_AUTH="$(echo \"This is a salt string to generate one consistent basic authentication password for the project manager database GUI. It is not required to be secret.\" | sha1sum | openssl pkeyutl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
TEST_SMTP_AUTH="$(echo \"This is a salt string to generate one consistent basic authentication password for the project manager test SMTP server. It is not required to be secret.\" | sha1sum | openssl pkeyutl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
PM_OIDC_URL="https://sso.verbis.dkfz.de/application/o/cce-project-manager-api/"
PM_OIDC_PUBLIC_CLIENT_ID="cce-project-manager-ui"
PM_OIDC_PRIVATE_CLIENT_ID="cce-project-manager-api"
PM_OIDC_PRIVATE_SECRET="$(echo \"This is a salt string to generate the private secret for the project manager oidc public client. It is not required to be secret.\" | sha1sum | openssl pkeyutl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
fi