id_token or call a userinfo endpoint. The OAuth connector provides flexibility to connect services like GitHub, Atlassian, and other platforms that support OAuth but not OpenID Connect..
Console terminology: In the Maverics Console, this section is called
Identity Fabric. The YAML configuration uses the
connectors key to define
identity provider integrations.Overview
The Generic OAuth connector targets authorization servers that expose OAuth 2.0 endpoints. It supports two configuration styles — discovery via awellKnownURL, or manually specified authorizeURL and tokenURL endpoints — and a non-standard “no client authentication” mode for federation flows where the upstream authenticates the request via a subject token instead of client credentials.
The wellKnownURL field accepts either an OAuth Authorization Server Metadata document or an OIDC discovery document (which is a superset of the OAuth metadata format). Either way, the connector reads only the OAuth endpoints from the discovery document — it does not perform OIDC end-user authentication.
For interactive end-user login against a full OpenID Connect IdP, use the Generic OIDC connector instead.
Use Cases
- Token brokering against OAuth-only authorization servers — Exchange Orchestrator-issued tokens for upstream tokens (RFC 8693 token exchange) against services like Databricks account-wide federation or GCP Workload Identity Federation, where the upstream exposes OAuth but no
id_tokenand no userinfo endpoint. - Machine-to-machine outbound calls — Authorize outbound calls from the Orchestrator where the upstream authenticates the request via a subject token rather than client credentials.
- OAuth-only authorization servers — Integrate with services like GitHub or Atlassian that provide OAuth 2.0 authorization but not full OIDC, when you need access tokens for API access rather than user identity.
Setup
- Console UI
- Configuration
To create a Generic OAuth connector in the Maverics Console:
- Navigate to Identity Fabric in the Console sidebar.
- Click Create and select Generic OAuth.
- Enter a Name for the connector — this is the friendly name that identifies your OAuth integration.
-
Provide endpoints either by:
- Entering the Well Known URL — either an OAuth Authorization Server Metadata URL (RFC 8414) or an OIDC discovery URL; or
- Entering the Authorization URL and Token URL manually.
- Enter the Client ID issued by the upstream authorization server.
- Enter the Client Secret associated with the client ID. Use the show/hide toggle to verify the value.
- Add one or more Redirect URLs — the URL(s) where the Orchestrator’s OAuth handler is served. At least one entry is required.
- Optionally enable Disable Client Authentication if the upstream authorization server authenticates the request via the subject token alone (for example, Databricks account-wide federation). See Disable Client Authentication below.
- Click Save.
Disable Client Authentication
SettingdisableClientAuthentication: true is intended for federation flows where the upstream authorization server authenticates the request via the subject token alone — for example, Databricks account-wide federation. When enabled:
clientSecretmust be empty.clientIDbecomes optional, though some grants may still require it at runtime.- The Orchestrator enforces grant-type-level rules. For instance, the client-credentials and Resource Owner Password Credentials (ROPC) grants are rejected at runtime when client authentication is disabled, because those grants depend on client credentials to authenticate the request.
maverics.yaml
Troubleshooting
- Verify the
authorizeURLandtokenURLare accessible from the Orchestrator host — confirm both endpoints respond correctly. - If using
wellKnownURL, ensure the discovery document URL is correct and returns valid JSON withauthorization_endpointandtoken_endpointfields. - Ensure the
loginRedirectURLs match exactly what is registered with the upstream authorization server. - Check that the client secret reference resolves correctly via your secret provider — unless
disableClientAuthenticationistrue, in which caseclientSecretmust be empty. - If
disableClientAuthenticationistrue, confirm the grant type in use is supported — client-credentials and ROPC grants are rejected when client authentication is disabled. - Verify the requested
scopesare valid for the authorization server — invalid scopes may cause authorization failures.
Related Pages
Identity Fabric
Overview of all identity providers
Token Brokering
RFC 8693 token exchange for downstream APIs
Generic OIDC
Generic OpenID Connect connector
Generic SAML
Generic SAML 2.0 connector