Samyak Jain
Samyak Jain

Reputation: 165

How to use the build pipeline to deploy azure data factory resources?

I have a Azure data factory to deploy using azure devops. So I have created a build pipeline using the "Publish Build Artifacts" task and created the artifacts folder named "drop" which has the resources i want to deploy.

I need help with the release pipeline for the same. Which task should i use in my release pipeline to deploy this artifact folder "drop"?

I initially tried with ARM template deployment but it doesn't make use of the drop folder and deploys everything i.e, the entire data factory everytime. So i created a build folder wherein i have only limited things to deploy. But i am now stuck with the release pipeline task for the same.

Any help would be great. Thanks

Upvotes: 0

Views: 183

Answers (1)

Pratik Somaiya
Pratik Somaiya

Reputation: 733

You need to use version 2 of RG deployment:

enter image description here

And then you need to select, Create or Update Resource Group.

You need to provide path of ADF ARM templates in the template path text box.

Thanks,

Pratik

Upvotes: 0

Related Questions