You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way management interface auth is implemented, you can already use it with other mechanisms. In fact, there already is a test in the management-interface-auth module that uses SR JWT to access secured management interface endpoint. But for that to work, you need to set quarkus.management.auth.basic=true even for cases where basic auth is not used.
Implementation ideas
I think following things should be done:
add quarkus.management.auth.enabled that is true by default when quarkus.management.auth.basic=true
test management interface endpoints secured with OIDC, SR JWT, mTLS
document the support for tested mechanisms
The text was updated successfully, but these errors were encountered:
Description
The way management interface auth is implemented, you can already use it with other mechanisms. In fact, there already is a test in the
management-interface-auth
module that uses SR JWT to access secured management interface endpoint. But for that to work, you need to setquarkus.management.auth.basic=true
even for cases where basic auth is not used.Implementation ideas
I think following things should be done:
quarkus.management.auth.enabled
that is true by default whenquarkus.management.auth.basic=true
The text was updated successfully, but these errors were encountered: