Skip to content

Commit 02ebc91

Browse files
authored
Merge pull request #289130 from v-luckywang/1024-Add_sslmode_to_mariadb
[ADF][New feature] MariaDB ADF support SSL model property
2 parents 5453317 + 35c1fc3 commit 02ebc91

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

articles/data-factory/connector-mariadb.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: jianleishen
66
ms.subservice: data-movement
77
ms.custom: synapse
88
ms.topic: conceptual
9-
ms.date: 10/09/2024
9+
ms.date: 10/24/2024
1010
ms.author: jianleishen
1111
---
1212

@@ -82,6 +82,8 @@ If you use the recommended driver version, the following properties are supporte
8282
| database | Your MariaDB database name. | Yes |
8383
| username | Your user name. | Yes |
8484
| password | The password for the user name. Mark this field as SecureString to store it securely. Or, you can [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
85+
| sslMode | This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., `SSLMode=<0/1/2/3/4>`.<br/>Options: DISABLED (0) / PREFERRED (1) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4) **(Default)** | Yes |
86+
| useSystemTrustStore | This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. `UseSystemTrustStore=<0/1>`;<br/>Options: Enabled (1) / Disabled (0) **(Default)** | No |
8587
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. Learn more from [Prerequisites](#prerequisites) section. If not specified, it uses the default Azure Integration Runtime. |No |
8688

8789
**Example:**
@@ -100,7 +102,9 @@ If you use the recommended driver version, the following properties are supporte
100102
"type": "SecureString",
101103
"value": "<password>"
102104
},
103-
"driverVersion": "v2"
105+
"driverVersion": "v2",
106+
"sslMode": <sslmode>,
107+
"useSystemTrustStore": <UseSystemTrustStore>
104108
},
105109
"connectVia": {
106110
"referenceName": "<name of Integration Runtime>",
@@ -130,7 +134,9 @@ If you use the recommended driver version, the following properties are supporte
130134
},
131135
"secretName": "<secretName>"
132136
},
133-
"driverVersion": "v2"
137+
"driverVersion": "v2",
138+
"sslMode": <sslmode>,
139+
"useSystemTrustStore": <UseSystemTrustStore>
134140
},
135141
"connectVia": {
136142
"referenceName": "<name of Integration Runtime>",
4.18 KB
Loading

0 commit comments

Comments
 (0)