-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Adding Kerberos auth configs from the trino-python-client
- Loading branch information
1 parent
a268d99
commit e9194b1
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: Fixes | ||
body: Adding Kerberos auth configs from the trino-python-client | ||
time: 2022-09-26T09:14:42.507437-07:00 | ||
custom: | ||
Author: BendettaSD | ||
Issue: "" | ||
PR: "137" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,11 @@ A dbt profile can be configured to run against Trino using the following configu | |
| krb5_config | Path to config for kerberos authentication | Optional (may be required if `method` is `kerberos`) | `/tmp/krb5.conf` | | ||
| principal | Principal for kerberos authentication | Optional (may be required if `method` is `kerberos`) | `[email protected]` | | ||
| service_name | Service name for kerberos authentication | Optional (default is `trino`) | `abc123` | | ||
| mutual_authentication | Boolean flag for mutual authentication | Optional (may be required if `method` is `kerberos`) | `false` | | ||
| force_preemptive | Boolean flag for preemptively initiate the Kerberos GSS exchange | Optional (may be required if `method` is `kerberos`) | `false` | | ||
| hostname_override | Kerberos hostname for a host whose DNS name doesn't match | Optional (may be required if `method` is `kerberos`) | `EXAMPLE.COM` | | ||
| sanitize_mutual_error_response | Boolean flag to strip content and headers from error responses | Optional (may be required if `method` is `kerberos`) | `true` | | ||
| delegate | Boolean flag for credential delgation (GSS_C_DELEG_FLAG) | Optional (may be required if `method` is `kerberos`) | `false` | | ||
| jwt_token | JWT token for authentication | Optional (required if `method` is `jwt`) | `none` or `abc123` | | ||
| client_certificate | Path to client certificate to be used for certificate based authentication | Optional (required if `method` is `certificate`) | `/tmp/tls.crt` | | ||
| client_private_key | Path to client private key to be used for certificate based authentication | Optional (required if `method` is `certificate`) | `/tmp/tls.key` | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters