Skip to content

Commit 84ab3d0

Browse files
Merge pull request #280585 from Clare-Zheng82/0711-Add_Dynamics_AD_auth
[New feature] Add AD auth related properties for Dynamics doc
2 parents 84f70cb + 1cecb6a commit 84ab3d0

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

articles/data-factory/connector-dynamics-crm-office-365.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.topic: conceptual
88
ms.author: jianleishen
99
author: jianleishen
1010
ms.custom: synapse
11-
ms.date: 11/20/2023
11+
ms.date: 07/11/2024
1212
---
1313
# Copy and transform data in Dynamics 365 (Microsoft Dataverse) or Dynamics CRM using Azure Data Factory or Azure Synapse Analytics
1414

@@ -234,17 +234,21 @@ Additional properties that compare to Dynamics online are **hostName** and **por
234234

235235
| Property | Description | Required |
236236
|:--- |:--- |:--- |
237-
| type | The type property must be set to "Dynamics", "DynamicsCrm", or "CommonDataServiceForApps". | Yes. |
238-
| deploymentType | The deployment type of the Dynamics instance. The value must be "OnPremisesWithIfd" for Dynamics on-premises with IFD.| Yes. |
239-
| hostName | The host name of the on-premises Dynamics server. | Yes. |
237+
| type | The type property must be set to "Dynamics", "DynamicsCrm", or "CommonDataServiceForApps". | Yes |
238+
| deploymentType | The deployment type of the Dynamics instance. The value must be "OnPremisesWithIfd" for Dynamics on-premises with IFD.| Yes |
239+
| hostName | The host name of the on-premises Dynamics server. | Yes |
240240
| port | The port of the on-premises Dynamics server. | No. The default value is 443. |
241-
| organizationName | The organization name of the Dynamics instance. | Yes. |
242-
| authenticationType | The authentication type to connect to the Dynamics server. Specify "Ifd" for Dynamics on-premises with IFD. | Yes. |
243-
| username | The username to connect to Dynamics. | Yes. |
244-
| password | The password for the user account you specified for the username. You can mark this field with "SecureString" to store it securely. Or you can store a password in Key Vault and let the copy activity pull from there when it does data copy. Learn more from [Store credentials in Key Vault](store-credentials-in-key-vault.md). | Yes. |
241+
| organizationName | The organization name of the Dynamics instance. | Yes |
242+
| authenticationType | The authentication type to connect to the Dynamics server. Specify "ActiveDirectoryAuthentication" for Dynamics on-premises with IFD. | Yes |
243+
| domain | The Active Directory domain that will verify user credentials. | Yes |
244+
| username | The username to connect to Dynamics. | Yes |
245+
| password | The password for the user account you specified for the username. You can mark this field with "SecureString" to store it securely. Or you can store a password in Key Vault and let the copy activity pull from there when it does data copy. Learn more from [Store credentials in Key Vault](store-credentials-in-key-vault.md). | Yes |
245246
| connectVia | The [integration runtime](concepts-integration-runtime.md) to be used to connect to the data store. If no value is specified, the property uses the default Azure integration runtime. | No |
246247

247-
#### Example: Dynamics on-premises with IFD using IFD authentication
248+
>[!Note]
249+
>Due to the sunset of Idf authentication type by **August 31, 2024**, please upgrade to Active Directory Authentication type before the date if you are currently using it.
250+
251+
#### Example: Dynamics on-premises with IFD using Active Directory authentication
248252

249253
```json
250254
{
@@ -257,7 +261,8 @@ Additional properties that compare to Dynamics online are **hostName** and **por
257261
"hostName": "contosodynamicsserver.contoso.com",
258262
"port": 443,
259263
"organizationName": "admsDynamicsTest",
260-
"authenticationType": "Ifd",
264+
"authenticationType": "ActiveDirectoryAuthentication",
265+
"domain": "< Active Directory domain >",
261266
"username": "[email protected]",
262267
"password": {
263268
"type": "SecureString",

0 commit comments

Comments
 (0)