Search code examples
azure-devopsazure-data-factoryazure-rm-templateazure-deployment

Azure Data Factory Deployment pipeline using ARM template


We are trying to Deploy Azure Datafactory using Azure Group Deployment task in Azure Pipelines. The templates have been pushed into the artifacts and we are reading the Arm Templates and its Parameter files from that location

enter image description here

When I click Override parameters, it shows the below error:

enter image description here

I have checked both the json files and verified the schema format and other solution seen in google search. Still I am getting this error.


Solution

  • I tried to deploy Arm template to Deploy ADF with classic pipeline instead of using AzureDeployment:CreateorUpdateResource I directly used ARM Template deployment task and it read the JSON deployment file correctly, Refer below:-

    Task:- ARM Template Deployment:-

    Add the ARM json file by visiting the correct repository and folder:-

    enter image description here

    ARM file added as a Template:-

    enter image description here

    Output:-

    enter image description here

    Portal:-

    enter image description here