0
有沒有辦法在循環中添加依賴項? 我想通過循環添加幾個允許所有規則NSG,它失敗。 我使用這樣的模板:Azure資源管理器:循環依賴
{
"copy": {
"name": "allowCopy",
"count": "[length(parameters('allowedCIDRs'))]"
},
"apiVersion": "[variables('apiVersionString')]",
"type": "Microsoft.Network/networkSecurityGroups/securityRules",
"name": "[concat(parameters('networkSecurityGroupName'), '/', parameters('allowedCIDRsNames')[copyIndex()])]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[concat('Microsoft.Network/networkSecurityGroups/', parameters('networkSecurityGroupName'))]"
],
"properties": {
"description": "[concat('Allow everything from ', parameters('allowedCIDRsNames')[copyIndex()])]",
"protocol": "*",
"sourcePortRange": "*",
"destinationPortRange": "*",
"sourceAddressPrefix": "[parameters('allowedCIDRs')[copyIndex()]]",
"destinationAddressPrefix": "*",
"access": "Allow",
"priority": "[copyIndex(100)]",
"direction": "Inbound"
}
}
其中allowedCIDRs和allowedCIDRsNames各自9個元件的陣列。
它失敗,以下錯誤:
New-AzureResourceGroupDeployment : 13:55:12 PM - Resource Microsoft.Network/networkSecurityGroups/securityRules 'NSGName/RuleName' failed with message 'Another operation on this or dependent resource is in progress. Toretrieve status of the operation use uri: '
每次在不同的規則
更多信息不,我想在allowedCIDR中插入值。這部分工作正常。但問題是並非所有的規則都是由這個循環添加的。一些正在停滯,並出現錯誤:New-AzureResourceGroupDeployment:13:55:12 PM - 資源Microsoft.Network/networkSecurityGroups/securityRules'NSGName/RuleName'失敗,並顯示'此消息或依賴資源上的另一項操作正在進行中。 Toretrieve狀態的操作使用uri:' 也許有一種方法可以在每個循環中添加等待? –
默認情況下,循環嘗試並行執行操作。您可能需要將其更改爲串行。欲瞭解更多信息:https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-multiple#serial-copy – BrentDaCodeMonkey