Skip to content

Commit d80fce2

Browse files
There was mistake with az deployment group command.
There was mistake with az deployment group command. It did not have create. It just had - az deployment group --resource-group myResourceGroup \ --template-file template.json --name mydeployment Made changes as per right syntax - az deployment group create --resource-group myResourceGroup \ --template-file template.json --name mydeployment
1 parent 6d595d5 commit d80fce2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-registry/manual-regional-move.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ az group create --name myResourceGroup --location eastus
8888
Use the [az deployment group create](/cli/azure/deployment/group#az_deployment_group_create) command to deploy the target registry, using the template:
8989

9090
```azurecli
91-
az deployment group --resource-group myResourceGroup \
91+
az deployment group create --resource-group myResourceGroup \
9292
--template-file template.json --name mydeployment
9393
```
9494

@@ -149,4 +149,4 @@ After you have successfully deployed the target registry, migrated content, and
149149
## Next steps
150150

151151
* Learn more about [importing container images](container-registry-import-images.md) to an Azure container registry from a public registry or another private registry.
152-
* See the [Resource Manager template reference](/azure/templates/microsoft.containerregistry/registries) for Azure Container Registry.
152+
* See the [Resource Manager template reference](/azure/templates/microsoft.containerregistry/registries) for Azure Container Registry.

0 commit comments

Comments
 (0)