【发布时间】:2021-12-22 09:28:33
【问题描述】:
我需要 Azure 数据工厂的 Azure DevOps CI/CD 技巧。
我有 Azure 数据工厂,它具有将 json 发布到 Azure LogicApps 的 Web 活动。 (ADF Web->Logic Apps) 我已将 URL 作为 Web Activity 中的参数。
Parameter in ADF Pipeline: MyReport_LogicAppURL
我已经编辑了 ARM 模板 管理->ARM模板->编辑参数配置
"Microsoft.DataFactory/factories/pipelines": {
"properties": {
"parameters": {
"MyPremLoad_OnPremDb": {
"defaultValue": "="
},
"MyReport_LogicAppURL": {
"defaultValue": "="
}
}
}
},
我保存它然后发布。 但是我在 Git Repo 的 ARMTemplateParametersForFactory.json 中没有看到任何更新
为什么 ARMTemplateParametersForFactory.json 没有在 Azure DevOps for Azure Data Factory 中得到更新?我已经在其他环境中成功地做到了这一点。其他人过去也成功部署了 MyPremLoad_OnPremDb。
【问题讨论】:
标签: azure-devops azure-data-factory