F5 Intergration #303
-
Hi, Thanks ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @yanikl! Regarding F5, note we can not give more guidance here as this is a very specific F5 question. Can you elaborate a bit on your use case? It looks like it is possible to set up F5 as an OpenID Connect server (https://community.f5.com/kb/technicalarticles/oauth-and-openid-connect---made-easy-with-access-guided-configurations-templates/303115), where IdentityServer could federate to F5 for authentication (https://docs.duendesoftware.com/identityserver/ui/federation/). They also seem to support other approaches of exposing user data to integrations, where you could plug in a custom Creating users depends first of all on the user store you want to use with IdentityServer. When using ASP.NET Identity as the backing store, you could build your own administration UI (or use any of the third party admin UIs out there). |
Beta Was this translation helpful? Give feedback.
Hi @yanikl!
Regarding F5, note we can not give more guidance here as this is a very specific F5 question. Can you elaborate a bit on your use case?
It looks like it is possible to set up F5 as an OpenID Connect server (https://community.f5.com/kb/technicalarticles/oauth-and-openid-connect---made-easy-with-access-guided-configurations-templates/303115), where IdentityServer could federate to F5 for authentication (https://docs.duendesoftware.com/identityserver/ui/federation/). They also seem to support other approaches of exposing user data to integrations, where you could plug in a custom
IProfileService
in IdentityServer and potentially update the Login page as well to integrate with F5.C…