Features

With the _features.conf you can control which issuer API features are enabled. They are managed via the feature manager.

Available Features

Base Features
Please note that the base features should always be enabled to make full use of the issuer API.

  • web - Web service
  • issuer-service - Issuer service implementation
  • credential-types - Configure credential types available in the issuer instance. Learn more here.

Optional Features

  • entra - Start issuing credential via the Microsoft Entra Verified ID platform. Learn more here.
  • healthchecks - Enables healthcheck endpoints.
  • debug-endpoints - Enables various debug endpoints.
  • feature-flag-information-endpoint - Enables endpoints related to showing information about available features on this service instance.

Example Setup

_features.conf
enabledFeatures = [
    entra
]
disabledFeatures = [
    debug-endpoints,
    healthchecks
]