Replies: 1 comment 1 reply
-
@gwitsch Hi, for some extensions like OIDC we have a thanks |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have implemented a rest service that is secured by Client Credentials grant flow by using the quarkus-elytron-security-oauth2 package to replace an old service that used Basic Auth. However, some integrators still want to use Basic Auth only and don't want to provide the required OAuth config like introspection url, client id and client secret.
Enabling Basic Auth besides OAuth2 is straight forward and has already been tested successfully. But I could not find a solution to disable OAuth2 at runtime. The configuration quarkus.oauth2.enabled can be used to disable it, but that's a build time switch and not what I am looking for.
Is anyone aware of a solution to achieve this?
Any hints or recommandations are highly welcome.
I've already browsed the implementation and the biggest show stopper for my requirement is the startup validation and initialization of the OAuth module.
Best regards,
Gotthard
Beta Was this translation helpful? Give feedback.
All reactions