Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/src/main/sphinx/connector/cassandra.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,11 @@ Property name Description

``cassandra.tls.enabled`` Whether TLS security is enabled, defaults to ``false``.

``cassandra.tls.keystore-path`` Path to the PEM or JKS key store.
``cassandra.tls.keystore-path`` Path to the :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` key store file.

``cassandra.tls.truststore-path`` Path to the PEM or JKS trust store.
``cassandra.tls.truststore-path`` Path to the :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` trust store file.

``cassandra.tls.keystore-password`` Password for the key store.

Expand Down
8 changes: 4 additions & 4 deletions docs/src/main/sphinx/connector/elasticsearch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ The allowed configuration values are:
* - ``elasticsearch.tls.enabled``
- Enables TLS security.
* - ``elasticsearch.tls.keystore-path``
- The path to the PEM or JKS key store. This file must be readable by the
operating system user running Trino.
- The path to the :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` key store.
* - ``elasticsearch.tls.truststore-path``
- The path to PEM or JKS trust store. This file must be readable by the
operating system user running Trino.
- The path to :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` trust store.
* - ``elasticsearch.tls.keystore-password``
- The key password for the key store specified by
``elasticsearch.tls.keystore-path``.
Expand Down
10 changes: 6 additions & 4 deletions docs/src/main/sphinx/connector/mongodb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ Property name Description
``mongodb.connection-timeout`` The socket connect timeout
``mongodb.socket-timeout`` The socket timeout
``mongodb.tls.enabled`` Use TLS/SSL for connections to mongod/mongos
``mongodb.tls.keystore-path`` Path to the PEM or JKS key store
``mongodb.tls.truststore-path`` Path to the PEM or JKS trust store
``mongodb.tls.keystore-path`` Path to the or JKS key store
``mongodb.tls.truststore-path`` Path to the or JKS trust store
``mongodb.tls.keystore-password`` Password for the key store
``mongodb.tls.truststore-password`` Password for the trust store
``mongodb.read-preference`` The read preference
Expand Down Expand Up @@ -160,14 +160,16 @@ This property is optional; the default is ``false``.
``mongodb.tls.keystore-path``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The path to the PEM or JKS key store. This file must be readable by the operating system user running Trino.
The path to the :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` key store.

This property is optional.

``mongodb.tls.truststore-path``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The path to PEM or JKS trust store. This file must be readable by the operating system user running Trino.
The path to :doc:`PEM </security/inspect-pem>` or
:doc:`JKS </security/inspect-jks>` trust store.

This property is optional.

Expand Down