From 5fe41fc988755c3b03926635d4c4cbc25dc63871 Mon Sep 17 00:00:00 2001 From: Giuliano Rodrigues Lima Date: Thu, 3 Mar 2022 17:57:24 +0200 Subject: [PATCH] chore(documentation): Add configuration information for usage of the Optimize Public REST API in CCSM Mode relates to #OPT-6031 --- docs/self-managed/optimize-deployment/setup.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/self-managed/optimize-deployment/setup.md b/docs/self-managed/optimize-deployment/setup.md index a3d71b13035..bf9fae89476 100644 --- a/docs/self-managed/optimize-deployment/setup.md +++ b/docs/self-managed/optimize-deployment/setup.md @@ -30,6 +30,8 @@ optimize: - CAMUNDA_OPTIMIZE_ZEEBE_PARTITION_COUNT=1 - CAMUNDA_OPTIMIZE_SHARING_ENABLED=false - CAMUNDA_OPTIMIZE_UI_LOGOUT_HIDDEN=true + - SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI=https://weblogin.cloud.company.com/.well-known/jwks.json + - OPTIMIZE_API_ACCESS_TOKEN=secret ``` Some configuration properties are optional and have default values. See a description of these properties and their default values in the table below: @@ -49,6 +51,8 @@ CAMUNDA_OPTIMIZE_ZEEBE_NAME | The record prefix for exported Zeebe records. | ze CAMUNDA_OPTIMIZE_ZEEBE_PARTITION_COUNT | The number of partitions configured in Zeebe. | 1 CAMUNDA_OPTIMIZE_SHARING_ENABLED | Disables the sharing feature (this is not currently supported). | false CAMUNDA_OPTIMIZE_UI_LOGOUT_HIDDEN | Disables the logout button (logout is handled by IAM). | 1 +SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI | Authentication for the Public REST API using a resource server to validate the JWT token. Complete URI to get public keys for JWT validation | null +OPTIMIZE_API_ACCESS_TOKEN | Authentication for the Public REST API using a static shared token. Will be ignored if SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI is also set. | null ## Requirements