docs(presto): add Presto SSL connection details (#26986)

This commit is contained in:
Evan Rusackas 2024-02-02 11:38:17 -07:00 committed by GitHub
parent d8a9847503
commit 92b52a7fa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -35,3 +35,14 @@ datasource. If youre using an older version of Presto, you can configure it i
"version": "0.123"
}
```
SSL Secure extra add json config to extra connection information.
```
{
"connect_args":
{"protocol": "https",
"requests_kwargs":{"verify":false}
}
}
```