From 123cf24cb8c99a093249e4fb4c2ea5d3e897d0aa Mon Sep 17 00:00:00 2001 From: Josh Wulf Date: Thu, 11 Jul 2024 16:04:11 +1200 Subject: [PATCH 1/2] Update node-js-sdk.md Add instructions on disabling OAuth. --- docs/apis-tools/node-js-sdk.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/apis-tools/node-js-sdk.md b/docs/apis-tools/node-js-sdk.md index 5cc8fefda5..9e3c2e9a46 100644 --- a/docs/apis-tools/node-js-sdk.md +++ b/docs/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 67ba0ccaae8b04fa6f3e57e57c0c9f4d264f949b Mon Sep 17 00:00:00 2001 From: christinaausley <84338309+christinaausley@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:42:39 -0600 Subject: [PATCH 2/2] style(formatting): adjust phrasing --- docs/apis-tools/node-js-sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apis-tools/node-js-sdk.md b/docs/apis-tools/node-js-sdk.md index 9e3c2e9a46..3186f048f2 100644 --- a/docs/apis-tools/node-js-sdk.md +++ b/docs/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'