From 66acef970c9fcf516759a5cfc0a680efe0c2a523 Mon Sep 17 00:00:00 2001 From: anopsy Date: Wed, 19 Feb 2025 17:58:53 +0100 Subject: [PATCH] fix inconsistency --- soda/connect-trino.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soda/connect-trino.md b/soda/connect-trino.md index 6e5a00e1..90f577a8 100644 --- a/soda/connect-trino.md +++ b/soda/connect-trino.md @@ -35,10 +35,10 @@ data_source my_datasource_name: | type | required | Identify the type of data source for Soda. | | host | required | Provide a host identifier. | | port | optional | Provide a port identifier. | -| auth_type| optional | `BasicAuthentication` in combination of user + password or `JWTAuthentication` in combination with username and `access_token`. Default: `BasicAuthentication`. | +| auth_type| optional | `BasicAuthentication` in combination of user + password or `JWTAuthentication` in combination with `access_token` and optionally username. Default: `BasicAuthentication`. | | access_token | optional | Map to the JWT access token. Only applicable if auth_type = `JWTAuthentication`. | | username | required | Optional if auth_type = `JWTAuthentication`. Consider using system variables to retrieve this value securely using, for example, `${TRINO_USER}`. | -| password | optional | Consider using system variables to retrieve this value securely using, for example, `${TRINO_PASSWORD}`. Only applicable for default auth_type. | +| password | optional | Consider using system variables to retrieve this value securely using, for example, `${TRINO_PASSWORD}`. Only applicable for auth_type = `BasicAuthentication`. | | catalog | required | Provide an identifier for the catalog which contains schemas and which references a data source using a connector. See Catalog in the Trino documentation. | | schema | required | Provide an identifier for the schema in which your dataset exists. | | source | optional | |