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-mysql.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ The following properties are supported for MySQL linked service:
83
83
| port | The port number to connect to the MySQL server. |No|
84
84
| database | Your MySQL database name. |Yes|
85
85
| username | Your user name.|Yes|
86
-
| password | The password for the user name. | Yes |
86
+
| 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 |
87
87
| sslMode | This option specifies whether the driver uses TLS encryption and verification when connecting to MySQL. E.g., `SSLMode=<0/1/2/3/4>`.<br/>Options: DISABLED (0) / PREFERRED (1) **(Default)** / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4) | Yes |
88
88
| 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 |
89
89
| 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 |
@@ -100,6 +100,10 @@ The following properties are supported for MySQL linked service:
100
100
"port": 3306,
101
101
"database": "<database>",
102
102
"username": "<username>",
103
+
"password": {
104
+
"type": "SecureString",
105
+
"value": "<password>"
106
+
}
103
107
"sslmode": <sslmode>,
104
108
"usesystemtruststore": <UseSystemTrustStore>,
105
109
"driverVersion": "v2"
@@ -281,7 +285,7 @@ When copying data from MySQL, the following mappings are used from MySQL data ty
0 commit comments