You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cosmos-db/postgresql/howto-ssl-connection-security.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.service: cosmos-db
7
7
ms.subservice: postgresql
8
8
ms.custom: ignite-2022
9
9
ms.topic: conceptual
10
-
ms.date: 07/16/2020
10
+
ms.date: 12/06/2022
11
11
---
12
12
# Configure TLS in Azure Cosmos DB for PostgreSQL
13
13
@@ -23,26 +23,26 @@ The TLS parameters `ssl` and `sslmode` vary based on the capabilities of the con
23
23
Some application frameworks don't enable TLS by default for PostgreSQL connections. However, without a secure connection, an application can't connect to the coordinator node. Consult your application's documentation to learn how to enable TLS connections.
24
24
25
25
## Applications that require certificate verification for TLS connectivity
26
-
In some cases, applications require a local certificate file generated from a trusted Certificate Authority (CA) certificate file (.cer) to connect securely. The certificate to connect to an Azure Cosmos DB for PostgreSQL is located at https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem. Download the certificate file and save it to your preferred location.
26
+
In some cases, applications require a local certificate file generated from a trusted Certificate Authority (CA) certificate file (.cer) to connect securely. The certificate to connect to an Azure Cosmos DB for PostgreSQL is located at https://cacerts.digicert.com/DigiCertGlobalRootG2.crt.pem Download the certificate file and save it to your preferred location.
27
27
28
28
> [!NOTE]
29
29
>
30
30
> To check the certificate's authenticity, you can verify its SHA-256
31
31
> fingerprint using the OpenSSL command line tool:
The following example shows how to connect to your coordinator node using the psql command-line utility. Use the `sslmode=verify-full` connection string setting to enforce TLS certificate verification. Pass the local certificate file path to the `sslrootcert` parameter.
42
42
43
43
Below is an example of the psql connection string:
0 commit comments