MINOR: postgres add ssl options in yaml (#15538)

This commit is contained in:
Mayur Singal 2024-03-13 08:25:04 +05:30 committed by GitHub
parent 80123b3c0a
commit 2a3aa90faa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,6 +187,20 @@ Find more information about [Source Identity](https://docs.aws.amazon.com/STS/la
{% partial file="/v1.3/connectors/yaml/workflow-config-def.md" /%}
{% codeInfo srNumber=9 %}
**sslMode**: SSL Mode to connect to postgres database. E.g, `prefer`, `verify-ca`, `allow` etc.
NOTE: if you are using `IAM auth`, select either `allow` (recommended) or other option based on your use case.
{% /codeInfo %}
{% codeInfo srNumber=10 %}
**sslConfig.certificatePath**: CA certificate path. E.g., /path/to/public.cert. Will be used if Verify SSL is set to `verify-ca`.
{% /codeInfo %}
#### Advanced Configuration
{% codeInfo srNumber=7 %}
@ -238,6 +252,13 @@ source:
```yaml {% srNumber=6 %}
ingestAllDatabases: true
```
```yaml {% srNumber=9 %}
# sslMode: disable
```
```yaml {% srNumber=10 %}
# sslConfig:
# certificatePath: /path/to/public.cert
```
```yaml {% srNumber=7 %}
# connectionOptions:
# key: value