Skip to content

Commit c86ff8e

Browse files
authored
Merge pull request #202134 from dbradish-microsoft/dbradish_azdeploymentFix
fixed deprecated az group deployment command
2 parents d9a690f + aa85fb5 commit c86ff8e

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

articles/aks/use-system-pools.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -329,21 +329,21 @@ In this article, you learned how to create and manage system node pools in an AK
329329
<!-- INTERNAL LINKS -->
330330
[aks-taints]: use-multiple-node-pools.md#setting-nodepool-taints
331331
[aks-windows]: windows-container-cli.md
332-
[az-aks-get-credentials]: /cli/azure/aks#az_aks_get_credentials
333-
[az-aks-create]: /cli/azure/aks#az_aks_create
332+
[az-aks-get-credentials]: /cli/azure/aks#az-aks-get-credentials
333+
[az-aks-create]: /cli/azure/aks#az-aks-create
334334
[new-azakscluster]: /powershell/module/az.aks/new-azakscluster
335-
[az-aks-nodepool-add]: /cli/azure/aks/nodepool#az_aks_nodepool_add
336-
[az-aks-nodepool-list]: /cli/azure/aks/nodepool#az_aks_nodepool_list
337-
[az-aks-nodepool-update]: /cli/azure/aks/nodepool#az_aks_nodepool_update
338-
[az-aks-nodepool-upgrade]: /cli/azure/aks/nodepool#az_aks_nodepool_upgrade
339-
[az-aks-nodepool-scale]: /cli/azure/aks/nodepool#az_aks_nodepool_scale
340-
[az-aks-nodepool-delete]: /cli/azure/aks/nodepool#az_aks_nodepool_delete
341-
[az-extension-add]: /cli/azure/extension#az_extension_add
342-
[az-extension-update]: /cli/azure/extension#az_extension_update
343-
[az-group-create]: /cli/azure/group#az_group_create
344-
[az-group-delete]: /cli/azure/group#az_group_delete
335+
[az-aks-nodepool-add]: /cli/azure/aks/nodepool#az-aks-nodepool-add
336+
[az-aks-nodepool-list]: /cli/azure/aks/nodepool#az-aks-nodepool-list
337+
[az-aks-nodepool-update]: /cli/azure/aks/nodepool#az-aks-nodepool-update
338+
[az-aks-nodepool-upgrade]: /cli/azure/aks/nodepool#az-aks-nodepool-upgrade
339+
[az-aks-nodepool-scale]: /cli/azure/aks/nodepool#az-aks-nodepool-scale
340+
[az-aks-nodepool-delete]: /cli/azure/aks/nodepool#az-aks-nodepool-delete
341+
[az-extension-add]: /cli/azure/extension#az-extension-add
342+
[az-extension-update]: /cli/azure/extension#az-extension-update
343+
[az-group-create]: /cli/azure/group#az-group-create
344+
[az-group-delete]: /cli/azure/group#az-group-delete
345345
[remove-azresourcegroup]: /powershell/module/az.resources/remove-azresourcegroup
346-
[az-group-deployment-create]: /cli/azure/group/deployment#az_group_deployment_create
346+
[az-deployment-group-create]: /cli/azure/deployment/group#az-deployment-group-create
347347
[gpu-cluster]: gpu-cluster.md
348348
[install-azure-cli]: /cli/azure/install-azure-cli
349349
[install-azure-powershell]: /powershell/azure/install-az-ps

articles/azure-portal/azure-portal-dashboards-create-programmatically.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Once you've configured your template, deploy it using any of the following metho
107107

108108
- [REST APIs](/rest/api/resources/deployments)
109109
- [PowerShell](../azure-resource-manager/templates/deploy-powershell.md)
110-
- [Azure CLI](/cli/azure/group/deployment#az-group-deployment-create)
110+
- [Azure CLI](/cli/azure/deployment/group#az-deployment-group-create)
111111
- [The Azure portal template deployment page](https://portal.azure.com/#create/Microsoft.Template)
112112

113113
Next you'll see two versions of our example dashboard JSON. The first is the version that we exported from the portal that was already bound to a resource. The second is the template version that can be programmatically bound to any virtual machine and deployed using Azure Resource Manager.

articles/container-registry/zone-redundancy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Copy the following contents to a new file and save it using a filename such as `
225225
}
226226
```
227227

228-
Run the following [az deployment group create](/cli/azure/group/deployment#az-group-deployment-create) command to create the registry using the preceding template file. Where indicated, provide:
228+
Run the following [az deployment group create](/cli/azure/deployment/group#az-deployment-group-create) command to create the registry using the preceding template file. Where indicated, provide:
229229

230230
* a unique registry name, or deploy the template without parameters and it will create a unique name for you
231231
* a location for the replica that supports availability zones, such as *westus2*

articles/cosmos-db/migrate-continuous-backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Replace it with the following JSON object:
154154
Next deploy the template by using Azure PowerShell or CLI. The following example shows how to deploy the template with a CLI command:
155155

156156
```azurecli
157-
az group deployment create -g <ResourceGroup> --template-file <ProvisionTemplateFilePath>
157+
az deployment group create -g <ResourceGroup> --template-file <ProvisionTemplateFilePath>
158158
```
159159

160160
## What to expect during and after migration?

articles/cosmos-db/provision-account-continuous-backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ You can use Azure Resource Manager templates to deploy an Azure Cosmos DB accoun
225225
Next, deploy the template by using Azure PowerShell or CLI. The following example shows how to deploy the template with a CLI command:
226226

227227
```azurecli-interactive
228-
az group deployment create -g <ResourceGroup> --template-file <ProvisionTemplateFilePath>
228+
az deployment group create -g <ResourceGroup> --template-file <ProvisionTemplateFilePath>
229229
```
230230

231231
## Next steps

articles/cosmos-db/restore-account-continuous-backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ Use the following ARM template to restore an account for the Azure Cosmos DB SQL
904904
Next, deploy the template by using Azure PowerShell or Azure CLI. The following example shows how to deploy the template with an Azure CLI command:
905905

906906
```azurecli-interactive
907-
az group deployment create -g <ResourceGroup> --template-file <RestoreTemplateFilePath>
907+
az deployment group create -g <ResourceGroup> --template-file <RestoreTemplateFilePath>
908908
```
909909

910910
## Next steps

0 commit comments

Comments
 (0)