I'm trying to concatenate a disk name, but I'm having trouble. I can concat with the following, which has parameter first, with no issues
"Newvm02OSDiskName": "[concat(Parameters('Newvm02VMName'), '-osdisk')]"
But when I try to add "dsk-"
at the front I get an error.
"Newvm02OSDiskName": "[concat('dsk-', (Parameters('Newvm02VMName'), '-osdisk'))]"
Can't see where I'm going wrong, help please :)
Thanks in advance