I have a ARM template parameter as below. I want to set the “fruits” value as array parameter in ADF pipeline. The parameter is converted into [{‘name’:’apple’},{‘name’:’orange’}] with single quotes after deployment. ADF doesn’t recognize this as valid array. However if I change the quotes to double quotes, then it works. How do I set a valid array parameter in this case ?
"Config": {
"type": "array",
"defaultValue": [
{
"type": "type1",
"fruits": [
{
"name": "apple"
},
{
"name": "orange"
}
]
}
]
}