blinky1
blinky1

Reputation: 75

use single unique client for multiple realm in keycloak

We are using keycloak in a multi-tenant micro-services application.
We have planed to use one realm per tenant.
Also there is single endpoint that all user requests (from all tenants) authenticated with JWT bearer token flow.
Is that possible to create one application client in keycloak and share it amount all realms? Or we have to create a client (with same name) for each realms?

Upvotes: 6

Views: 2840

Answers (1)

dreamcrash
dreamcrash

Reputation: 51553

Is that possible to create one application client in keycloak and share it amount all realms?

Out-of-the box this is not possible, just like users, clients are defined at the Realm level, and consequently, cannot be shared among realms.

Upvotes: 3

Related Questions