使用二头肌将全局参数添加到数据工厂

问题描述 投票:0回答:0

我无法使用二头肌将全局参数添加到 Azure 数据工厂。部署运行正常,但数据工厂中的全局参数列表为空。

我用过这段代码:

resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' = {
name: name
identity: {
  type: 'SystemAssigned'
}
properties: {
  globalParameters: {
    environment: {
      type: 'String'
      value: 'dev'
    }
  }
}
location: location

}

我做错了什么?

azure azure-data-factory azure-bicep
© www.soinside.com 2019 - 2024. All rights reserved.