Replies: 3 comments 1 reply
-
I don't know if this gets bumped, so I might make another discussion related to this, but I am curious about this as well. Edit: Looks like it does get bumped. My question which I figure is the same: I need to support users that can login with an email/password. I am assuming I can use the Dex DB with Postgres and dynamically generate these users through gRPC API? |
Beta Was this translation helpful? Give feedback.
-
@allidoisace, yes, this is a correct approach. In Flant, we use this scenario to generate temporary users if the main IdP is unavailable or if there are no other connectors enabled. |
Beta Was this translation helpful? Give feedback.
-
It is possible to predict the Sub consists of two parts: connector id (in the case of If you know user id and connector id, you can marshal the sub claim Lines 314 to 323 in f49e7bc |
Beta Was this translation helpful? Give feedback.
-
Hello Dex heroes,
I am developing an application with support for multiple Idp's using Dex (AD and OIDC).
I now need to support a use case using Windows local users/groups. The only way I see to do this is to use the Dex DB and add users through gRPC with my application. It looks like there was more support for this type scenario in Dex v1.
So, anyway, is this the best/correct approach? I would deploy a Postgres DB with Dex and add users via gRPC.
Thoughts and advice?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions