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/data-factory/connector-mariadb.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ The following properties are supported for MariaDB linked service:
79
79
| port | The port number to connect to the MariaDB server. | No |
80
80
| database | Your MariaDB database name. | Yes |
81
81
| username | Your user name. | Yes |
82
-
| password | The password for the user name. | Yes |
82
+
| 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 |
83
83
| 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 |
84
84
85
85
**Example:**
@@ -94,6 +94,10 @@ The following properties are supported for MariaDB linked service:
94
94
"port": "<port>",
95
95
"database": "<database>",
96
96
"username": "<username>",
97
+
"password": {
98
+
"type": "SecureString",
99
+
"value": "<password>"
100
+
},
97
101
"driverVersion": "v2"
98
102
},
99
103
"connectVia": {
@@ -116,7 +120,7 @@ The following properties are supported for MariaDB linked service:
116
120
"port": "<port>",
117
121
"database": "<database>",
118
122
"username": "<username>",
119
-
"pwd": {
123
+
"password": {
120
124
"type": "AzureKeyVaultSecret",
121
125
"store": {
122
126
"referenceName": "<Azure Key Vault linked service name>",
@@ -252,7 +256,7 @@ When copying data from MariaDB, the following mappings are used from MariaDB dat
0 commit comments