Skip to content

Commit b97ae30

Browse files
Azure Quickstart - Fix azlocal start-interception (#545)
1 parent 753e7d9 commit b97ae30

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/docs/azure/getting-started/quickstart.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before you begin, make sure that the Emulator is running, see the [installation
2626
To instruct the regular `az` CLI tool to communicate with the Azure emulator, run the following command:
2727

2828
```
29-
$ azlocal start_interception
29+
$ azlocal start-interception
3030
```
3131

3232
You may see some warnings about experimental commands, you can safely ignore these.
@@ -36,17 +36,17 @@ You may see some warnings about experimental commands, you can safely ignore the
3636
To create a resource group, you can now the same `az` command as you would normally:
3737

3838
```
39-
$ az group create --name MyResourceGroup --location westeurope
39+
$ az group create --name myResourceGroup --location westeurope
4040
```
4141

4242
The following output would be displayed:
4343

4444
```bash
4545
{
46-
"id": "/subscriptions/some-generated-id/resourceGroups/MyResourceGroup",
46+
"id": "/subscriptions/some-generated-id/resourceGroups/myResourceGroup",
4747
"location": "westeurope",
4848
"managedBy": null,
49-
"name": "MyResourceGroup",
49+
"name": "myResourceGroup",
5050
"properties": {
5151
"provisioningState": "Succeeded"
5252
},
@@ -60,7 +60,7 @@ The following output would be displayed:
6060
To check the resource group details, run the following command:
6161

6262
```
63-
$ az group show --name MyResourceGroup
63+
$ az group show --name myResourceGroup
6464
```
6565

6666
To list all the resource groups, run the following command:
@@ -74,7 +74,7 @@ $ azlocal group list
7474
To delete the resource group, run the following command:
7575

7676
```
77-
$ az group delete --name MyResourceGroup --yes
77+
$ az group delete --name myResourceGroup --yes
7878
```
7979

8080
### Teardown

0 commit comments

Comments
 (0)