Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion references/workspace/scim-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ SCIM (System for Cross-domain Identity Management) is an open standard protocol

This document describes the steps required to integrate SCIM into your Enterprise instance, allowing your IdP to manage users and groups within your organization.

If you are self-hosting Lightdash, you must set the `SCIM_ENABLED` environment variable to `true` to enable SCIM:

```bash
SCIM_ENABLED=true
```

<Warning>
**Important:** If you are self-hosting Lightdash, when using SCIM with SSO, you should enable the `AUTH_ENABLE_OIDC_TO_EMAIL_LINKING` environment variable. This allows linking OIDC identity to an existing user by email. Without this setting, Lightdash will attempt to create a new user when they sign in via SSO, which will fail if the user was already provisioned via SCIM.
**Important:** When using SCIM with SSO, you should also enable the `AUTH_ENABLE_OIDC_TO_EMAIL_LINKING` environment variable. This allows linking OIDC identity to an existing user by email. Without this setting, Lightdash will attempt to create a new user when they sign in via SSO, which will fail if the user was already provisioned via SCIM.

```bash
AUTH_ENABLE_OIDC_TO_EMAIL_LINKING=true
Expand Down
Loading