Working on some template automation and I'll need to move from deploying with local files to deploying with files from cloud storage. I've bolded the stuff that worked and now doesn't.
This works
New-AzResourceGroupDeployment -ResourceGroupName myrg -TemplateParameterFile .\ScalingParameters.json" -TemplateFile .\ScalingTemplate.json -vmInitialNumber 1 -hostpooltoken <System.Security.SecureString> -WhatIf
This doesn't
New-AzResourceGroupDeployment -ResourceGroupName myrg -TemplateParameterUri "https://mysa.blob.core.windows.net/wvdarmtemplates/ScalingParameters.json?sp=<stuff>;" -TemplateUri "https://mysa.blob.core.windows.net/wvdarmtemplates/ScalingTemplate.json?sp=<stuff>;" -vmInitialNumber 1 -hostpooltoken <System.Security.SecureString> -WhatIf
Is passing the additional arguments not supported with URIs of have I done something else wrong?
Thanks,
Joe