手臂模板二头肌:合并应用设置时的循环依赖列表功能

问题描述

我正在尝试通过二头肌文件更新应用服务的 AppSettings。

在我的二头肌模板中执行此操作时:

var currentAppSettings = list('Microsoft.Web/sites/appServiceName/config/appsettings','2018-11-01')

var newAppSettings = {
  test: 'testValue'
}

var mergedAppSettings = union(currentAppSettings,newAppSettings)

resource appServiceConfig 'Microsoft.Web/sites/config@2018-11-01' = {
  name: 'appServiceName/appSettings'
  properties: mergedAppSettings
}

...部署二头肌文件时出现循环依赖错误:

"Deployment template validation failed: 'Circular dependency detected on resource: '/subscriptions/293d7347-b26f-4413-9986-d61717aaff26/resourceGroups/WSAPlayground/providers/Microsoft.Web/sites/playground-fitxp-backend-euw-wa/config/appSettings'. Please see https://aka.ms/arm-template/#resources for usage details.'."

有没有办法在不出现依赖错误的情况下做到这一点?

解决方法

尝试使用模块。 Bicep 模块本质上是嵌套部署。在顶级文件(即主文件)中提取当前值并将它们作为类型对象的参数传递给子模块(appsettings),然后执行合并和更新。 线索是在与读取当前值不同的模块中部署更新。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...