修改 Azure 数据工厂参数 JSON 文件以在 ARM 模板部署中使用

时间:2021-07-29 18:56:53

标签: azure-data-factory arm-template

我正在尝试使用 ARM 模板部署模型自动部署 Azure 数据工厂。作为其中的一部分,我需要修改 ARMTemplateParametersForFactory.json 如下:

来自:

require(:q)

致:

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "dataFactoryName": {
      "value": "GEN-UNIQUE"
    },    
    "dataFactoryLocation": {
      "value": "East US"
    }
  }
}

请提出一种使用命令行或 Azure Powershell 进行上述转换的方法。

0 个答案:

没有答案