Search code examples
gitazure-devopsazure-data-factoryazure-rm-template

How do I configure the Azure Devops account for a Data factory instead of Git?


 "repoConfiguration": {
                                "type": "FactoryGitHubConfiguration",
                                "accountName": "[parameters('gitAccountName')]",
                                "repositoryName": "[parameters('gitRepositoryName')]",
                                "collaborationBranch": "[parameters('gitBranchName')]",
                                "rootFolder": "[parameters('gitRootFolder')]"
                            }

I have added the above lines in template under the properties for configuring Git. Let me know how do we do it for Azure DevOps.


Solution

  • See this template ...

            "repoConfiguration": {
            "type": "FactoryVSTSConfiguration",
            "accountName": "parameter_value",
            "repositoryName": "parameter_value",
            "projectName": "parameter_value",
            "collaborationBranch": "parameter_value",
            "rootFolder": "parameter_value",
            "tenantId": "parameter_value"
        }