gpt4 book ai didi

azure - Azure RM 链接模板之间的依赖关系

转载 作者:行者123 更新时间:2023-12-03 01:03:56 27 4
gpt4 key购买 nike

我计划在我的资源组中创建两种资源:一个 Web 应用程序和一个服务总线。 Web 应用程序将有一个连接字符串来指向服务总线。因此,我需要首先创建服务总线,然后添加 Web 应用程序及其连接字符串。对于 Web 应用程序和服务总线,我都使用链接模板。我的简化 azuredeploy.json 如下所示:

{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"name": "myWebAppDeploy",
"apiVersion": "2017-05-10",
"type": "Microsoft.Resources/deployments",
"dependsOn": [
"UNKNOWN-DEPENDENCY"
],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "link/to/webapp.azuredeploy.json",
"contentVersion": "1.0.0.0"
},
"parameters": {
"name": {
"value": "myWebApp"
},
"connectionStrings": {
"value": {
"serviceBusConnectionString": "[listKeys(resourceId('Microsoft.ServiceBus/namespaces/authorizationRules', 'myServiceBus', 'RootManageSharedAccessKey'), '2017-04-01').primaryConnectionString]"
}
}
}
}
},
{
"name": "myServiceBusDeploy",
"apiVersion": "2017-05-10",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "link/to/servicebus.azuredeploy.json",
"contentVersion": "1.0.0.0"
},
"parameters": {
"name": {
"value": "myServiceBus"
}
}
}
}
]
}

无论我在 UNKNOWN-DEPENDENCY 部分中输入什么内容,我都会收到以下错误:

Template deployment returned the following errors:10:02:23 AM - Resource Microsoft.ServiceBus/namespaces/authorizationRules 'myServiceBus/RootManageSharedAccessKey' failed with message '{
"error": {
"code": "ParentResourceNotFound",
"message": "Can not perform requested operation on nested resource. Parent resource 'myServiceBus' not found."
}
}'

看起来它正在尝试在服务总线之前部署 Web 应用程序。我尝试过以下方法,但没有成功:

"myServiceBus"
"myServiceBusDeploy",
"[concat('Microsoft.Resources/deployments/', 'myServiceBusDeploy')]",
"[concat('Microsoft.ServiceBus/namespaces', 'myServiceBus')]"
"[resourceId('Microsoft.Resources/deployments', 'myServiceBusDeploy')]"
"[resourceId('Microsoft.ServiceBus/namespaces', 'myServiceBus')]"

我没有主意,也不知道如何设置这两个链接模板之间的依赖关系。

更新:如果我在收到错误后再次部署模板,它将起作用,因为服务总线已在第一次部署中部署。所以,我很确定嵌套/链接模板没问题。

最佳答案

正如 Gleb 指出的,这里的问题是 listKeys 正在立即进行评估(我们正在尝试修复 ARM 中的设计限制)。

要解决此问题,您可以执行以下两种操作之一:

1) 无需将 connstr 传递给模板,只需传入 ResourceId 并在 Web 应用部署中执行 listKeys() 即可。

2) 在服务总线部署中使用(connstr 的)部署输出,并引用()该部署输出。这会起作用,但它也会使嵌套部署上的/验证短路,因此#1 是更好的整体方法。

HTH

关于azure - Azure RM 链接模板之间的依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54601776/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com