Reputation: 2513
I have Web Activity in Azure Data Factory pipeline for Dev Environment.
It has URL, which has currently typed directly in ADF UI. This URL is different in each Dev, Test and Prod environment. URL are stored in Key Vault secret.
I have DevOps Pipeline, where ARM Template are deployed to Test and Prod.
Upvotes: 0
Views: 1842
Reputation: 273
Below link may be useful here, where it explains how to use Azure Key vault secrets in Azure Pipelines. https://learn.microsoft.com/en-us/azure/devops/pipelines/release/azure-key-vault?view=azure-devops
You can also reconsider your design. With in your Azure data factory pipeline itself you can make API call to key vault to get URL depending on environment and use that URL in web activity.
Upvotes: 0