OIDC Provider
Note: This feature is currently a Tech Preview and not recommended for deployment in production.
This document describes how Vault can be an OpenID Connect (OIDC) identity provider by enabling applications to leverage Vault as a source of identity using the OIDC protocol.
This feature allows clients speaking the OIDC protocol to take advantage of Vault's various authentication methods and source of identity. Clients can configure their authentication logic to talk to Vault. Once enabled, Vault will act as the bridge to identity providers via its existing authentication methods. Clients will also obtain identity information for their end-users by leveraging custom templating of Vault identity information.
Vault as an OIDC provider allows mutual Vault and Boundary customers to leverage Vault's identity system to delegate authentication and authorization to Vault. Vault, therefore, acts as an identity provider for Boundary. Other HashiCorp products such as Consul can also leverage Vault's identity system and provide delegated authentication and authorization to its users. Having Vault as an OIDC provider allows a single sign-on experience to their end-users for organizations that want to leverage Vault as an identity provider.
Configuration Options
The next few sections of the document provide implementation details for each resource that permits Vault configuration as an OIDC identity provider.
Providers
A Vault namespace may contain several provider resources. Each configured provider will publish the APIs listed within the OIDC flow. The APIs will be served via backend path-based routing on Vault's listen address.
A provider must have the following configuration parameters:
- Issuer URL: used in the
iss
claim of ID tokens - Allowed client IDs: limits which clients can access the provider
- Scopes supported: limits what identity information is available as claims
The issuer URL parameter is necessary for the validation of ID tokens by clients. If an URL parameter is not provided explicitly, it will default to a URL with Vault's api_addr as the scheme://host:port
component and /v1/:namespace/identity/oidc/provider/:name
as the path component. This means tokens issued by a provider in a specified Vault cluster must be validated within that same cluster. If the issuer URL is provided explicitly, it must point to a Vault instance that is network-reachable by clients for ID token validation.
The allowed client IDs parameter utilizes the list of client IDs that have been generated by Vault as a part of client registration. By default, all clients will be disallowed. Providing an asterisk(*) as the parameter value will allow all clients to use the provider. The scopes parameter employs a list of references to named scope resources. The values provided are discoverable by the scopes_supported
key in the OIDC discovery document of the provider. By default, a provider will have the openid
scope available. See the scopes section below for more details on the openid
scope.
Scopes
Providers may reference scope resources via the scopes_supported
parameter to make specific identity information available as claims.
A scope will have the following configuration parameters:
- Description: identity information captured by the scope
- Template: maps individual claims to Vault identity information
The template parameter takes advantage of the JSON-based templating used by identity tokens for claims mapping. This means the parameter will take a JSON string of arbitrary structure where the values may be replaced with specific identity information. Template parameters that are not present for a Vault identity are omitted from the resulting claims without an error.
Example of a JSON template for a scope:
The full list of template parameters are included in the following table:
Name | Description |
---|---|
identity.entity.id | The entity's ID |
identity.entity.name | The entity's name |
identity.entity.groups.ids | The IDs of the groups the entity is a member of |
identity.entity.groups.names | The names of the groups the entity is a member of |
identity.entity.metadata | Metadata associated with the entity |
identity.entity.metadata.<metadata key> | Metadata associated with the entity for the given key |
identity.entity.aliases.<mount accessor>.id | Entity alias ID for the given mount |
identity.entity.aliases.<mount accessor>.name | Entity alias name for the given mount |
identity.entity.aliases.<mount accessor>.metadata | Metadata associated with the alias for the given mount |
identity.entity.aliases.<mount accessor>.metadata.<metadata key> | Metadata associated with the alias for the given mount and metadata key |
identity.entity.aliases.<mount accessor>.custom_metadata | Custom metadata associated with the alias for the given mount |
identity.entity.aliases.<mount accessor>.custom_metadata.<custom_metadata key> | Custom metadata associated with the alias for the given mount and custom metadata key |
time.now | Current time as integral seconds since the Epoch |
time.now.plus.<duration> | Current time plus a Go-parsable duration |
time.now.minus.<duration> | Current time minus a Go-parsable duration |
Several named scopes can be made available on an individual provider. Note that the top-level keys in a JSON template may conflict with those in another scope. When scopes are made available on a provider, their templates are checked for top-level conflicts. A warning will be issued to the Vault operator if any conflicts are found. This may result in an error if the scopes are requested in an OIDC Authentication Request.
The openid
scope is a unique case scope that may not be modified or deleted. The scope will exist in Vault and supported by each provider by default. The scope represents the minimum set of claims required by the OIDC specification for inclusion in ID tokens. As such, templates may not contain top-level keys that overwrite the claims populated by the openid scope.
The following defines the claims key and value mapping for the openid scope:
iss
- configured issuer of the providersub
- unique entity ID of the Vault useraud
- ID of the clientiat
- time of token issueexp
- time of token issue + ID token TTL
Client registration
A client resource allows the relying party to dynamically register by providing metadata about itself to Vault.
The client must have the following configuration parameters:
- Redirect URIs: limits the valid redirect URIs in an authentication request
- Assignments: determines who can authenticate with the client
- Key: used to sign the ID tokens
- ID token TTL: specifies the time-to-live for ID tokens
- Access token TTL: establishes the time-to-live for access tokens
A client_id
and client_secret
are generated and returned after a successful client registration. Their values are strings using the base62 character set. The client_id
will have 32 characters, and the client_secret
will have a prefix of hvo_secret
. The client_id
uniquely identifies the client. The client_secret
will be used to authenticate to the token endpoint as described in client authentication.
The key
parameter is required. The user must create a key
as a required parameter of the client configuration.
Note: At least one of the redirect URIs of a client must exactly match the redirect_uri
parameter used in an authentication request initiated by the client.
Assignments
Assignment resources are referenced by clients via the assignments
parameter. This parameter limits the set of Vault users allowed to authenticate. The assignments of an associated client are validated during the authentication request, ensuring that the Vault identity associated with the request is a member of the assignment's entities or groups.
Keys
Key resources are referenced by clients via the key parameter. This parameter specifies the key that will be used to sign ID tokens for the client. See existing documentation for details on keyring management, supported signing algorithms, rotation periods, and verification TTLs. Currently, a key referenced by a client cannot be changed.
OIDC flow
Note: The Vault OIDC Provider feature currently only supports the authorization code flow.
The following sections provide implementation details for the OIDC compliant APIs provided by Vault OIDC providers.
Vault OIDC providers enable registered clients to authenticate and obtain identity information (or "claims") for their end-users. They do this by providing the APIs and behavior required to satisfy the OIDC specification for the authorization code flow. All clients are treated as first-party. This means that end-users will not be required to provide consent to the provider as detailed in section 3.1.2.4 of the OIDC specification. The provider will release information to clients as long as the end-user has ACL access to the provider and their identity has been authorized via an assignment.
OpenID configuration
Each provider offers an unauthenticated endpoint that facilitates OIDC Discovery. All required metadata listed in OpenID Provider Metadata is included in the discovery document. Additionally, the recommended userinfo_endpoint
and scopes_supported
metadata are included.
Keys
Each provider offers an unauthenticated endpoint that provides the public portion of keys used to sign ID tokens. The keys are published in a JSON Web Key Set (JWKS) format. The keyset for an individual provider contains the keys referenced by all clients via the allowed_client_ids
configuration parameter. A Cache-Control
header to set based on responses, allowing clients to refresh their keys upon rotation. The max-age
of the header is set based on the earliest rotation time of any of the keys in the keyset.
Authorization Endpoint
Each provider offers an authenticated authorization endpoint. The authorization endpoint for each provider is added to Vault's default policy using the identity/oidc/provider/+/authorize
path. The endpoint incorporates all required authentication request parameters as input. Additionally, the state
and nonce
parameters are required.
The endpoint validates client requests and ensures that all required parameters are present and valid. The redirect_uri
of the request is validated against the client's redirect_uris
. The requesting Vault entity will be validated against the client's assignments
. An appropriate error code is returned for invalid requests.
An authorization code is generated with a successful validation of the request. The authorization code is single-use and cached with a lifetime of approximately 5 minutes, which mitigates the risk of leaks. A response including the original state
presented by the client and code
will be returned to the Vault UI which initiated the request. Vault will issue an HTTP 302 redirect to the redirect_uri
of the request, which includes the code
, state
, and nonce
as query parameters.
Token Endpoint
Each provider will offer a token endpoint. The endpoint may be unauthenticated in Vault but is authenticated by requiring a client_secret
as described in client authentication. The endpoint ingests all required token request parameters as input. The endpoint validates the client requests and exchanges an authorization code for the ID token and access token. The cache of authorization codes will be verified against the code presented in the exchange. The appropriate error codes are returned for all invalid requests.
The ID token is generated and returned upon successful client authentication and request validation. The ID token will contain a combination of required and configurable claims. The required claims are enumerated in the scopes section above for the openid
scope. The configurable claims are populated by templates associated with the scopes provided in the authentication request that generated the authorization code.
An access token is also generated and returned upon successful client authentication and request validation. The access token is a Vault batch token with a policy that only provides read access to the issuing provider's userinfo endpoint. The access token is also a TTL as defined by the access_token_ttl
of the requesting client.
UserInfo Endpoint
Each provider provides an authenticated userinfo endpoint. The endpoint accepts the access token obtained from the token endpoint as a bearer token. The userinfo response is a JSON object with the application/json
content type. The JSON object contains claims for the Vault entity associated with the access token. The claims returned are determined by the scopes requested in the authentication request that produced the access token. The sub
claim is always returned as the entity ID in the userinfo response.