OAuth 2.0 authentication#
Trino can be configured to enable OAuth 2.0 authentication over HTTPS for the Web UI and the JDBC driver. Trino uses the Authorization Code flow which exchanges an Authorization Code for a token. At a high level, the flow includes the following steps:
the Trino coordinator redirects a user’s browser to the Authorization Server
the user authenticates with the Authorization Server, and it approves the Trino’s permissions request
the user’s browser is redirected back to the Trino coordinator with an authorization code
the Trino coordinator exchanges the authorization code for a token
Note
OAuth 2.0 authentication currently supports JWT access tokens only, and therefore does not support opaque access tokens.
To enable OAuth 2.0 authentication for Trino, configuration changes are made on the Trino coordinator. No changes are required to the worker configuration; only the communication from the clients to the coordinator is authenticated.
Set the callback/redirect URL to https://<trino-coordinator-domain-name>/oauth2/callback
,
when configuring an OAuth 2.0 authorization server like an OpenID-connect
provider.
Trino server configuration#
Using the OAuth2 authentication requires the Trino coordinator to be secured with TLS.
The following is an example of the required properties that need to be added
to the coordinator’s config.properties
file:
http-server.authentication.type=oauth2
http-server.https.port=8443
http-server.https.enabled=true
http-server.authentication.oauth2.issuer=https://authorization-server.com
http-server.authentication.oauth2.auth-url=https://authorization-server.com/authorize
http-server.authentication.oauth2.token-url=https://authorization-server.com/token
http-server.authentication.oauth2.jwks-url=https://authorization-server.com/.well-known/jwks.json
http-server.authentication.oauth2.client-id=CLIENT_ID
http-server.authentication.oauth2.client-secret=CLIENT_SECRET
In order to enable OAuth 2.0 authentication for the Web UI, the following properties need to be added:
web-ui.authentication.type=oauth2
The following configuration properties are available:
Property |
Description |
---|---|
|
The type of authentication to use. Must be set to |
|
The issuer URL of the IdP. All issued tokens must have this in the |
|
The issuer URL of the IdP for access tokens, if different. All issued access tokens must
have this in the |
|
The authorization URL. The URL a user’s browser will be redirected to in order to begin the OAuth 2.0 authorization process. |
|
The URL of the endpoint on the authorization server which Trino uses to obtain an access token. |
|
The URL of the JSON Web Key Set (JWKS) endpoint on the authorization server. It provides Trino the set of keys containing the public key to verify any JSON Web Token (JWT) from the authorization server. |
|
The URL of the IdPs |
|
The public identifier of the Trino client. |
|
The secret used to authorize Trino client with the authorization server. |
|
Additional audiences to trust in addition to the client ID which is always a trusted audience. |
|
Scopes requested by the server during the authorization challenge. See: https://tools.ietf.org/html/rfc6749#section-3.3 |
|
Maximum duration of the authorization challenge. Default is |
|
A secret key used by the SHA-256 HMAC algorithm to sign the state parameter in order to ensure that the authorization request was not forged. Default is a random string generated during the coordinator start. |
|
Regex to match against user. If matched, the user name is replaced with
first regex group. If not matched, authentication is denied. Default is
|
|
File containing rules for mapping user. See User mapping for more information. |
|
The field of the access token used for the Trino user principal. Defaults to |
Troubleshooting#
If you need to debug issues with Trino OAuth 2.0 configuration you can change the log level for the OAuth 2.0 authenticator:
io.trino.server.security.oauth2=DEBUG