问题
The aim of the template is to add subnets to an existing Vnet but when executing it using the powershell command
New-AzureRmResourceGroupDeployment -Name testing -ResourceGroupName rgname -TemplateFile C:\Test\deploy.json -TemplateParameterFile C:\Test\parameterfile.json
The following error is displayed and I really cant understand what it means.Here is the error * "Error: Code=InvalidRequestContent; Message=The request content was invalid and could not be deserialized: 'Cannot populate JSON array ontotype'Microsoft.WindowsAzure.ResourceStack.Frontdoor.Templates.Schema.TemplateResourceCopy'. Path 'properties.template.resources[0].copy' "*
Following is my input file(parameter.json)
{
"VNetSettings":{
"value":{
"name":"VNet2",
"addressPrefixes":"10.0.0.0/16",
"subnets":[
{
"name": "sub5",
"addressPrefix": "10.0.5.0/24"
},
{
"name":"sub6",
"addressPrefix":"10.0.6.0/24"
}
]
}
}
}
The following is my template(deploy.json)
{
"contentversion":"1.0.0.0",
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"parameters":{
"VNetSettings":
{"type":"object"},
"noofsubnets":
{
"type":"int"
}
},
"resources":
[
{
"type":"Microsoft.Network/virtualNetworks/subnets",
"apiVersion": "2015-06-15",
"location":"[resourceGroup().location]",
"copy": [
{
"name":"subnets",
"count":"[parameters('noofsubnets')]",
"input": {
"name": "[concat(parameters('VNetSettings').name, '/',parameters('VNetSettings').subnets[copyIndex('subnets')].name)]",
"properties":{
"addressPrefix": "[parameters('VNetSettings').subnets[copyIndex('subnets')].addressPrefix]"
}
}
}
]
}
]
}
I guess the error should be in and around the copy statement.
回答1:
if you create a subnet resource, you need to structure json like a full blown resource:
"name": "[concat('bla/bla-', copyIndex())]",
"type": xxx,
"apiVersion": xxx,
"location": xxx,
"copy": {
"name": xxx,
"count": xxx
},
"properties": {
"addressPrefix": xxx
}
and just use copyIndex()
function. without 'subnets'
回答2:
Here is the solution.Thanks to @4c74356b41 for your leads.
{
"contentversion":"1.0.0.0",
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"parameters":{
"VNetSettings":{"type":"object"},
"noofsubnets":
{
"type":"int"
}
},
"variables":
{
"vnetname":"[parameters('VNetSettings').name]"
},
"resources":
[
{
"type":"Microsoft.Network/virtualNetworks/subnets",
"name": "[concat(variables('vnetname'), '/',parameters('VNetSettings').subnets[copyIndex()].name)]",
"apiVersion": "2015-06-15",
"location":"[resourceGroup().location]",
"properties":{
"addressPrefix": "[parameters('VNetSettings').subnets[copyIndex()].addressPrefix]"
},
"copy":{
"name":"subnetcopy",
"count":"[parameters('noofsubnets')]"
}
}
]
}
来源:https://stackoverflow.com/questions/49302167/cannot-deserialize-json-array-into-type-microsoft-windowsazure-resourcestack-fr