Replies: 1 comment 2 replies
-
Each route/function can have its own scope. So, perhaps you can have your admin function requiring a different scope which requires MFA? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, guys. I was wondering how could I have a web application with specific privileged functions (or routes, in a web app context), that ask for MFA, but not the entire app. Explaining deeply, my web app is using OpenID Connect for single sign-on, and my users does not need an strong authentication (a simple password is enough). However, to access the path "/admin", for example, I would like that my app ask for MFA, requiring a stronger authentication method. The way I'd imagined to do this is using two app registrations: the first having common behavior and a second asking for MFA based in a Conditional Access rule. While the ordinay routes uses first app registration, the privileged routes requires logon on second app. But for me it sounds like an ugly solution. Has anyone here had a similar problem and could share the way that handle with this? Thanks for any tip or trick.
Beta Was this translation helpful? Give feedback.
All reactions