How can i Update URL on data factory

Vandrangi Charaz Kumar 40 Reputation points
2023-10-25T12:05:47.5133333+00:00

I have setup a web Activity and need to change the URL Using Devops Pipe line for instance, I want to switch from test.com to uat.com in the web activity URL

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,197 questions
0 comments No comments
{count} votes

Accepted answer
  1. Smaran Thoomu 12,620 Reputation points Microsoft Vendor
    2023-10-25T13:26:05.1+00:00

    Hi @Vandrangi Charaz Kumar
    As I understand you want to setup a Web Activity to change the URL using Devops pipeline. If this is not, please let me know.
    To replace test.com to UAT.com on your release pipeline, you can use the override template parameters to replace the URL.

    User's image

    To parameterize the URL, Use the below block of code in the custom template-parameters-definition.json

    {
    "Microsoft.DataFactory/factories/pipelines": {
    "properties": {
    "activities": [{
    "typeProperties": {
    "url": "-"
    }
    }]
    }
    }
    }

    How to use custom parameters:
    https://learn.microsoft.com/en-us/azure/data-factory/continuous-integration-delivery-resource-manager-custom-parameters

    I hope this helps. Please let me know if you have any further questions.


    If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful