Reputation: 1920
The New-AzureDeployment cmdlet is not updating the Deployment Name with the value from the -Name parameter. As per MSFT's documentation here, the -Name parameter maps to the Deployment Name but when I tested, it was the Deployment Unique name that got updated with the value of -Name parameter. Moreover, I could use special characters like '.' and '/' in deployment name when uploading the package directly from portal, but the cmdlet wouldn't let me use any special characters
Wondering if someone had run into this issue?
Here is the screenshot of the error that I am seeing when using special characters
New-AzureDeployment : HTTP Status Code: BadRequest - HTTP Error Message: The deployment name is invalid
Upvotes: 3
Views: 760
Reputation: 30903
Use the -Label
option to specify user friendly name (your custom desired name that will be shown in the portal).
-Name
option is for system-use, and is assigned to a GUID if not specified.
Here is where in the portal these switches are represented:
Upvotes: 6