Configuration Reference
Complete reference for enabling and configuring platform authorization: the auth section in config, Helm values, environment variables, and the choice between embedded and external OPA.
For quickstart setup, see Authentication and Authorization. For OIDC settings, see OIDC Setup.
Enabling Authorization
Authorization is enabled in the platform config by setting auth.enabled: true. This can be done in the platform config file:
When using Helm, this is done by setting platformConfig.auth.enabled: true in your Helm values; this becomes auth.enabled in the calculated platform config.
When auth.enabled is false (the default), all API requests are allowed without checks. When true, every request is evaluated by the Policy Decision Point (PDP). In Helm deployments, this setting is controlled via platformConfig.auth.enabled.
Bootstrap Admin
When authorization is enabled, a platform administrator can be configured. Setting admin_email gives that identity the PlatformAdmin role at platform start. Use it to create the first workspaces and grant roles to other users. After bootstrap, manage access via workspaces and members as described in Managing Access.
This page covers the auth-specific configuration fields you need to enable and operate authorization. Auth-related values are found under platformConfig.auth in the values file.
For OIDC-specific fields (auth.oidc), see OIDC Setup.
Authorization Engine: Embedded vs External OPA
The PDP can run in two modes. For technical details, see Policy Engine.
Embedded (default)
- Provider:
policy_decision_point_provider: "embedded". - The auth service runs a built-in WASM policy engine. No OPA sidecar is required.
- Policy data (role bindings, scopes, etc.) is loaded from the entity store and refreshed on an interval (
policy_data_refresh_interval).
Use embedded for new deployments and when you do not already have an OPA fleet.
External OPA
- Provider:
policy_decision_point_provider: "opa". - An external OPA sidecar (or server) fetches policy bundles from the auth service and evaluates requests.
- Set
policy_decision_point_base_urlto the OPA service URL (e.g.,http://opa:8181). bundle_cache_secondscontrols how long OPA caches the bundle.
Use external OPA when you already use OPA for other services or need a single policy engine at the edge.
Environment Variables
Configuration can be overridden with environment variables using the NMP_AUTH_ prefix. Names are derived from the config keys in UPPER_SNAKE_CASE.
Examples:
Nested keys (e.g., OIDC) use double underscore: NMP_AUTH_OIDC__ISSUER, NMP_AUTH_OIDC__CLIENT_ID.
Example Configurations
Quickstart / development (auth disabled)
Quickstart / development (auth enabled)
Production with embedded PDP
Production with external OPA
Related
- Authentication and Authorization — Overview, auth methods, and getting started.
- OIDC Setup — IdP configuration and CLI login.
- Gateway Integration — Using a gateway for authorization.
- Managing Access — Workspaces and member management.
- Policy Engine — PDP internals and configuration.