I am deploying an ARM template via Powershell and using the following commands. The parameter in the ARM template is of type array and is named "backendIPAddresses". The below doesnt work. How can I pass parameters of type array to the template using -TemplateParameterObject
$Parameters = @{
"backendIPAddresses" = "10.20.4.7", "10.20.4.8"
}
New-AzureRmResourceGroupDeployment -ResourceGroupName "resourcegroup" -TemplateUri $rg_templateuri -TemplateParameterObject $Parameters