Open
Description
Description of the new feature
Currently, there are four different ARM deployment Cmdlets in the Az
PowerShell module, all with their individual scopes:
- New-AzTenantDeployment
- New-AzManagementGroupDeployment
- New-AzDeployment
- New-AzResourceGroupDeployment
From this list is becomes quite obvious that there is something wrong with the New-AzDeployment
Cmdlet: It lacks the scope's name!
Sure, there is an alias available, providing the Subscription scope name: New-AzSubscriptionDeployment
. Yet, all documentation links etc. are pointing to New-AzDeployment
though, which isn't satisfying as there is no indication that New-AzDeployment
is in fact a deployment on Subscription level.
Hence, I propose to deprecate New-AzDeployment
in favor of New-AzSubscriptionDeployment
and, perhaps, make New-AzDeployment
merely the new alias for New-AzSubscriptionDeployment
.