An Azure service for ingesting, preparing, and transforming data at scale.
@Anonymous to add the clusterID to the parameterization template, go to
Management > ARMtemplate > Edit
Then find the linked services selection, and add
"existingClusterId": "=",
Doing so, adds it to the parameterization template, and when I export ARM template I can see it like this:
{
"name": "[concat(parameters('factoryName'), '/AzureDatabricks1')]",
"type": "Microsoft.DataFactory/factories/linkedServices",
"apiVersion": "2018-06-01",
"properties": {
"annotations": [],
"type": "AzureDatabricks",
"typeProperties": {
"domain": "https://XXXXXXXXX.azuredatabricks.net",
"authentication": "MSI",
"workspaceResourceId": "XXXXXXXXXXXXXXXX",
"existingClusterId": "[parameters('AzureDatabricks1_properties_typeProperties_existingClusterId')]"
}
},
"dependsOn": []
}