Chupakabra Sorry for the late response. I was not getting a notification of your comment. Please refer the below snippet on how we override the parameters in the ADF deployment task:
- task: AzurePowerShell@5
displayName: Deploy ADF
inputs:
azureSubscription: '$(azureSubscription)'
ScriptType: 'InlineScript'
Inline:
'New-AzResourceGroupDeployment
-ResourceGroupName "$(DeploymentResourceGroupName)" -TemplateParameterFile
"$(System.DefaultWorkingDirectory)/$(SourceDataFactoryName)/ARMTemplateParametersForFactory.json"
-TemplateFile "$(System.DefaultWorkingDirectory)/$(SourceDataFactoryName)/ARMTemplateForFactory.json"
-factoryName "$(DeployDataFactoryName)"
-conn_kv_properties_typeProperties_baseUrl "$(KeyVaultUrl)"
-LS_databricks_properties_typeProperties_domain "$(Databricksurl)"
-ls_transient_properties_typeProperties_url "$(DLGSTransient)"
-ls_external_properties_typeProperties_url "$(DLGSExternal)"
-ls_internal_properties_typeProperties_url "$(DLGSInternal)"
-LS_Databricks_properties_typeProperties_workspaceResourceId "$(DatabricksWorkspace)"
-az_keyvault_properties_privateLinkResourceId "$(KeyVaultPrivateLink)"
-pe-datag2_properties_privateLinkResourceId "$(DataLakeTransientPrivateLink)"
-pe-datalake-ext_properties_privateLinkResourceId "$(DataLakeExternalPrivateLink)"
-pe-datalake-inernal_properties_privateLinkResourceId "$(DataLakeInternalPrivateLink)"
-Mode "Incremental"'
azurePowerShellVersion: 'LatestVersion'