camunda-community-hub / camunda-platform-7-keycloak

Camunda Keycloak Identity Provider Plugin
Apache License 2.0
132 stars 74 forks source link

SSO with Camunda run #102

Closed tmaroschik closed 2 years ago

tmaroschik commented 2 years ago

I tried the examples and tried also to configure spring.security.oauth2 properties in the yaml files, but unfortunately the latter have no effect. We need oidc token based auth in the rest engine, so am I right to assume that this is not possible with camunda run? The login form works with keycloak by the way.

VonDerBeck commented 2 years ago

Hi @tmaroschik,

sorry for answering so late. SSO with Camund run is not availabe out of the box. The Keycloak Identity Provider is what it says: it is a read only identity provider for Camunda Platform 7, just like the LDAP identity provider. SSO is an additional topic. I would suggest to have a look at the SSO example which wires everything together. This means, that you have to setup your own Spring Boot application. But that's an easy task and gives you a lot more flexibility than just starting Camunda Run.

tmaroschik commented 2 years ago

Thanks a lot. We'll try that.