Skip to content

Commit 6123bc6

Browse files
adding register steps
------- cc: @dikamath
1 parent 98b418b commit 6123bc6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

articles/azure-vmware/tutorial-create-private-cloud.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ In this tutorial, you learn how to:
2323
- Appropriate administrative rights and permission to create a private cloud.
2424
- Ensure you have the appropriate networking configured as described in [Tutorial: Network checklist](tutorial-network-checklist.md).
2525

26+
## Register the resource provider
27+
28+
In order to use the Azure VMWare Solution you must first register the resource provider. The following example registers the resource provider with your subscription.
29+
30+
```azurecli-interactive
31+
az provider register -n Microsoft.VMwareVirtustream --subscription <your subscription ID>
32+
```
33+
34+
For additional ways to register the resource provider, see [Azure resource providers and types](../azure-resource-manager/management/resource-providers-and-types.md).
35+
2636
## Sign in to the Azure portal
2737

2838
Sign in to the [Azure portal](https://portal.azure.com).
@@ -67,14 +77,6 @@ The Azure Cloud Shell is a free interactive shell that you can use to run the st
6777

6878
To open the Cloud Shell, just select **Try it** from the upper right corner of a code block. You can also launch Cloud Shell in a separate browser tab by going to https://shell.azure.com/bash. Select **Copy** to copy the blocks of code, paste it into the Cloud Shell, and press **Enter** to run it.
6979

70-
#### Register the resource provider
71-
72-
In order to use the Azure VMWare Solution you must first register the resource provider. The following example registers the resource provider with your subscription.
73-
74-
```azurecli-interactive
75-
az extension add --name vmware
76-
```
77-
7880
#### Create a resource group
7981

8082
Create a resource group with the [az group create](/cli/azure/group) command. An Azure resource group is a logical container into which Azure resources are deployed and managed. The following example creates a resource group named *myResourceGroup* in the *eastus* location:

0 commit comments

Comments
 (0)