From 1d7e59827fdf4f866db5a2d074e39e21f01bcbaa Mon Sep 17 00:00:00 2001 From: Josh Wulf Date: Thu, 11 Jul 2024 15:38:03 +1200 Subject: [PATCH 1/2] Update node-js-sdk.md A customer reached out to support because they used the Docker profile with no Identity and the connection fails because we assume OAuth. This patch informs the users how to turn OAuth off. --- versioned_docs/version-8.5/apis-tools/node-js-sdk.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/versioned_docs/version-8.5/apis-tools/node-js-sdk.md b/versioned_docs/version-8.5/apis-tools/node-js-sdk.md index 5cc8fefda5..9e3c2e9a46 100644 --- a/versioned_docs/version-8.5/apis-tools/node-js-sdk.md +++ b/versioned_docs/version-8.5/apis-tools/node-js-sdk.md @@ -69,6 +69,12 @@ If your installation does not have TLS on Zeebe: export CAMUNDA_SECURE_CONNECTION=false ``` +If you are using the "basic components" (no Identity), you need to disable OAuth: + +``` +export CAMUNDA_AUTH_STRATEGY='NONE' +``` + ### Camunda SaaS configuration ```bash From 268585910c17d0ffceb6209625da68ced602219b Mon Sep 17 00:00:00 2001 From: christinaausley <84338309+christinaausley@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:45:29 -0600 Subject: [PATCH 2/2] style(formatting): update phrasing --- versioned_docs/version-8.5/apis-tools/node-js-sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-8.5/apis-tools/node-js-sdk.md b/versioned_docs/version-8.5/apis-tools/node-js-sdk.md index 9e3c2e9a46..3186f048f2 100644 --- a/versioned_docs/version-8.5/apis-tools/node-js-sdk.md +++ b/versioned_docs/version-8.5/apis-tools/node-js-sdk.md @@ -69,7 +69,7 @@ If your installation does not have TLS on Zeebe: export CAMUNDA_SECURE_CONNECTION=false ``` -If you are using the "basic components" (no Identity), you need to disable OAuth: +If you are using the components without Identity, disable OAuth: ``` export CAMUNDA_AUTH_STRATEGY='NONE'