Interface ManagementAuthConfig
public interface ManagementAuthConfig
Authentication for the management interface.
-
Method Summary
-
Method Details
-
enabled
@WithDefault("${quarkus.management.auth.basic:false}") boolean enabled()If authentication for the management interface should be enabled. -
basic
If basic auth should be enabled. -
proactive
@WithDefault("true") boolean proactive()If this is true and credentials are present then a user will always be authenticated before the request progresses.If this is false then an attempt will only be made to authenticate the user if a permission check is performed or the current user is required for some other reason.
-