No description
Find a file
2022-04-29 23:30:09 +02:00
.vscode poc 2022-02-07 09:38:46 +01:00
docs/img fill the readme 2022-04-29 14:59:10 +02:00
src/main fix regression 2022-04-29 23:30:09 +02:00
.gitignore poc 2022-02-07 09:38:46 +01:00
.gitlab-ci.yml package with dependencies 2022-03-28 12:21:25 +02:00
docker-compose.yml poc 2022-02-07 09:38:46 +01:00
LICENSE Add LICENSE 2022-02-04 14:28:39 +00:00
pom.xml remove hibernate from pom 2022-02-07 16:54:34 +01:00
README.md fill the readme 2022-04-29 14:59:10 +02:00

keycloak-scim-client

This extension add SCIM2 client capabilities to Keycloak. (See RFC7643 and RFC7644).

Overview

Motivation

We want to build a unified collaborative platform based on multiple applications. To do that, we need a way to propagate immediately changes made in Keycloak to all these applications. And we want to keep using OIDC or SAML as the authentication protocol.

This will allow users to collaborate seamlessly across the platform without requiring every user to have connected once to each application. This will also ease GDRP compliance because deleting a user in Keycloak will delete the user from every app.

Technical choices

The SCIM protocol is standard, comprehensible and easy to implement. It's a perfect fit for our goal.

We chose to build application extensions/plugins because it's easier to deploy and thus will benefit to a larger portion of the FOSS community.

Keycloak specific

This extension uses 3 concepts in KC :

  • Event Listener : it's used to listens for changes and transform them in SCIM calls.
  • Federation Provider : it's used to set up all the SCIM service providers without creating our own UI.
  • JPA Entity Provider : it's used to save the mapping between the local IDs and the service providers IDs.

Because the event listener is the source of the SCIM flow, and it is not cancelable, we can't have strictly consistent behavior in case of SCIM service provider failure.

Usage

Installation

For now, it's doesn't't work on Quarkus which is the default after version 16.x.x.

  1. Download the latest version
  2. Put it in /opt/jboss/keycloak/standalone/deployments/.

Setup

Add the event listerner

  1. Go to Admin Console > Events > Config.
  2. Add scim in Event Listeners.
  3. Save.

Event listener page

Create a federation provider

  1. Go to Admin Console > User Federation.
  2. Click on Add provider.
  3. Select scim.
  4. Configure the provider (see).
  5. Save.

Federation provider page

Configuration

TODO

Sync

TODO

License AGPL