@@ -26,7 +26,7 @@ Before you begin, make sure that the Emulator is running, see the [installation
2626To 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
3232You 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
3636To 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
4242The 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:
6060To 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
6666To list all the resource groups, run the following command:
@@ -74,7 +74,7 @@ $ azlocal group list
7474To 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