How do you pass a parameter to an Azure CLI Task in Azure DevOps?
Take the very basic example of showing basic info about a VM. A basic CLI command would be:
- az vm show --name myVM --resource-group dev -o table
Now if I wanted to parameterize that command, so that I could pass in the VM Name, who would i do it?
I've tried creating a CLI Task as both an in-line script and a file, passing parameters using the Azure DevOps Argument builder, but nothing seems to work. The parameter looks like this:
- -vmname "win10-vs"
In the script, I can't get the -vmname parameter, no matter what I try. I've tried:
- $1
- $vmname
- %vmname
- %vmname%
So how do I do it?