--- layout: docs page_title: JWT/OIDC - Auth Methods sidebar_title: JWT/OIDC description: >- The JWT/OIDC auth method allows authentication using OIDC and user-provided JWTs --- # JWT/OIDC Auth Method The `jwt` auth method can be used to authenticate with Vault using [OIDC](https://en.wikipedia.org/wiki/OpenID_Connect) or by providing a [JWT](https://en.wikipedia.org/wiki/JSON_Web_Token). The OIDC method allows authentication via a configured OIDC provider using the user's web browser. This method may be initiated from the Vault UI or the command line. Alternatively, a JWT can be provided directly. The JWT is cryptographically verified using locally-provided keys, or, if configured, an OIDC Discovery service can be used to fetch the appropriate keys. The choice of method is configured per role. Both methods allow additional processing of the claims data in the JWT. Some of the concepts common to both methods will be covered first, followed by specific examples of OIDC and JWT usage. ### JWT Verification JWT signatures will be verified against public keys from the issuer. This process can be done in three different ways, though only one method may be configured for a single backend: - **Static Keys**. A set of public keys is stored directly in the backend configuration. - **JWKS**. A JSON Web Key Set ([JWKS](https://tools.ietf.org/html/rfc7517)) URL (and optional certificate chain) is configured. Keys will be fetched from this endpoint during authentication. - **OIDC Discovery**. An OIDC Discovery URL (and optional certificate chain) is configured. Keys will be fetched from this URL during authentication. When OIDC Discovery is used, OIDC validation criteria (e.g. `iss`, `aud`, etc.) will be applied. If multiple methods are needed, another instance of the backend can be mounted and configured at a different path. ### Bound Claims Once a JWT has been validated as being properly signed and not expired, the authorization flow will validate that any configured "bound" parameters match. In some cases there are dedicated parameters, for example `bound_subject`, which must match the JWT's `sub` parameter. A role may also be configured to check arbitrary claims through the `bound_claims` map. The map contains a set of claims and their required values. For example, assume `bound_claims` is set to: ```json { "division": "Europe", "department": "Engineering" } ``` Only JWTs containing both the "division" and "department" claims, and respective matching values of "Europe" and "Engineering", would be authorized. If the expected value is a list, the claim must match one of the items in the list. To limit authorization to a set of email addresses: ```json { "email": ["fred@example.com", "julie@example.com"] } ``` Bound claims can optionally be configured with globs. See the [API documentation](/api-docs/auth/jwt#bound_claims_type) for more details. ### Claims as Metadata Data from claims can be copied into the resulting auth token and alias metadata by configuring `claim_mappings`. This role parameter is a map of items to copy. The map elements are of the form: `"":""`. Assume `claim_mappings` is set to: ```json { "division": "organization", "department": "department" } ``` This specifies that the value in the JWT claim "division" should be copied to the metadata key "organization". The JWT "department" claim value will also be copied into metadata but will retain the key name. If a claim is configured in `claim_mappings`, it must existing in the JWT or else the authentication will fail. Note: the metadata key name "role" is reserved and may not be used for claim mappings. ### Claim specifications and JSON Pointer Some parameters (e.g. `bound_claims` and `groups_claim`) are used to point to data within the JWT. If the desired key is at the top of level of the JWT, the name can be provided directly. If it is nested at a lower level, a JSON Pointer may be used. Assume the following JSON data to be referenced: ```json { "division": "North America", "groups": { "primary": "Engineering", "secondary": "Software" } } ``` A parameter of `"division"` will reference "North America", as this is a top level key. A parameter `"/groups/primary"` uses JSON Pointer syntax to reference "Engineering" at a lower level. Any valid JSON Pointer can be used as a selector. Refer to the [JSON Pointer RFC](https://tools.ietf.org/html/rfc6901) for a full description of the syntax ## OIDC Authentication This section covers the setup and use of OIDC roles. If a JWT is to be provided directly, refer to the [JWT Authentication](/docs/auth/jwt#jwt-authentication) section below. Basic familiarity with [OIDC concepts](https://developer.okta.com/blog/2017/07/25/oidc-primer-part-1) is assumed. Vault includes two built-in OIDC login flows: the Vault UI, and the CLI using a `vault login`. ### Redirect URIs An important part of OIDC role configuration is properly setting redirect URIs. This must be done both in Vault and with the OIDC provider, and these configurations must align. The redirect URIs are specified for a role with the `allowed_redirect_uris` parameter. There are different redirect URIs to configure the Vault UI and CLI flows, so one or both will need to be set up depending on the installation. **CLI** If you plan to support authentication via `vault login -method=oidc`, a localhost redirect URI must be set. This can usually be: `http://localhost:8250/oidc/callback`. Logins via the CLI may specify a different host and/or listening port if needed, and a URI with this host/port must match one of the configured redirected URIs. These same "localhost" URIs must be added to the provider as well. **Vault UI** Logging in via the Vault UI requires a redirect URI of the form: `https://{host:port}/ui/vault/auth/{path}/oidc/callback` The "host:port" must be correct for the Vault server, and "path" must match the path the JWT backend is mounted at (e.g. "oidc" or "jwt"). If [namespaces](/docs/enterprise/namespaces) are being used, they must be added as query parameters, for example: `https://vault.example.com:8200/ui/vault/auth/oidc/oidc/callback?namespace=my_ns` ### OIDC Login (Vault UI) 1. Select the "OIDC" login method. 1. Enter a role name if necessary. 1. Press "Sign In" and complete the authentication with the configured provider. ### OIDC Login (CLI) The CLI login defaults to path of `/oidc`. If this auth method was enabled at a different path, specify `-path=/my-path` in the CLI. ```shell-session $ vault login -method=oidc port=8400 role=test Complete the login via your OIDC provider. Launching browser to: https://myco.auth0.com/authorize?redirect_uri=http%3A%2F%2Flocalhost%3A8400%2Foidc%2Fcallback&client_id=r3qXc2bix9eF... ``` The browser will open to the generated URL to complete the provider's login. The URL may be entered manually if the browser cannot be automatically opened. The callback listener may be customized with the following optional parameters. These are typically not required to be set: - `mount` (default: "oidc") - `listenaddress` (default: "localhost") - `port` (default: 8250) - `callbackhost` (default: "localhost") - `callbackmethod` (default: "http") - `callbackport` (default: value set for `port`). This value is used in the `redirect_uri`, whereas `port` is the localhost port that the listener is using. These two may be different in advanced setups. ### OIDC Provider Configuration The OIDC authentication flow has been successfully tested with a number of providers. A full guide to configuring OAuth/OIDC applications is beyond the scope of Vault documentation, but a collection of provider configuration steps has been collected to help get started: [OIDC Provider Setup](/docs/auth/jwt_oidc_providers) ### OIDC Configuration Troubleshooting This amount of configuration required for OIDC is relatively small, but it can be tricky to debug why things aren't working. Some tips for setting up OIDC: - If a role parameter (e.g. `bound_claims`) requires a map value, it can't be set individually using the Vault CLI. In these cases the best approach is to write the entire configuration as a single JSON object: ```text vault write auth/oidc/role/demo -<