I'm deploying my Azure Data Factory from one resource group (say dev
) to another (say prod
) using Azure DevOps Release Pipeline as mentioned here.
At any point of time, in my dev
Data Factory, I will have some pipelines which are ready to be published/deployed to prod
and some which are not.
Currently, whenever I hit Publish
on the Data Factory Author portal, all my dev
Data Factory pipelines are deployed to the prod
Data Factory. However, I want only a select few pipelines to be deployed to my prod
Data Factory and not all of them.
I figured that Azure Resource Manager offers the condition
attribute. However, I cannot use this since my template is automatically generated (in adf-publish
branch).
Any help on how I can conditionally deploy only certain dev
Data Factory pipelines to my prod
Data Factory is much appreciated.