I am creating a Azure ARM template to provision VMs based on the environmnet type; so created an array type parameter as below,
"EnvironmentType": {
"type": "array",
"defaultValue": [
"Dev",
"Test",
"PreProd",
"Prod"
]
},
But on Azure portal this parameter is rendered as textbox with comma separated values as shown in below screenshot.
How to get this parameter displayed as dropdown?
