Skip to content

Commit b96a681

Browse files
committed
Revert resource group change
1 parent c0659db commit b96a681

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/container-registry/container-registry-get-started-azure-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Because the Azure Cloud Shell doesn't include all required Docker components (th
1919

2020
Create a resource group with the [az group create][az-group-create] command. An Azure resource group is a logical container into which Azure resources are deployed and managed.
2121

22-
The following example creates a resource group named *my-resource-group* in the *eastus* location.
22+
The following example creates a resource group named *myResourceGroup* in the *eastus* location.
2323

2424
```azurecli
25-
az group create --name my-resource-group --location eastus
25+
az group create --name myResourceGroup --location eastus
2626
```
2727

2828
## Create a container registry
@@ -32,7 +32,7 @@ In this quickstart you create a *Basic* registry, which is a cost-optimized opti
3232
Create an ACR instance using the [az acr create][az-acr-create] command. The registry name must be unique within Azure, and contain 5-50 lowercase alphanumeric characters. In the following example, *mycontainerregistry* is used. Update this to a unique value.
3333

3434
```azurecli
35-
az acr create --resource-group my-resource-group \
35+
az acr create --resource-group myResourceGroup \
3636
--name mycontainerregistry --sku Basic
3737
```
3838

@@ -42,12 +42,12 @@ When the registry is created, the output is similar to the following:
4242
{
4343
"adminUserEnabled": false,
4444
"creationDate": "2019-01-08T22:32:13.175925+00:00",
45-
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-resource-group/providers/Microsoft.ContainerRegistry/registries/mycontainerregistry",
45+
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerRegistry/registries/mycontainerregistry",
4646
"location": "eastus",
4747
"loginServer": "mycontainerregistry.azurecr.io",
4848
"name": "mycontainerregistry",
4949
"provisioningState": "Succeeded",
50-
"resourceGroup": "my-resource-group",
50+
"resourceGroup": "myResourceGroup",
5151
"sku": {
5252
"name": "Basic",
5353
"tier": "Basic"

0 commit comments

Comments
 (0)