Skip to content

Commit bd11643

Browse files
authored
Add Microsoft.Compute to the resource providers (#233)
1 parent 5b70979 commit bd11643

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/DEPLOYMENT-GUIDE.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,18 @@ Role Based Access Control (RBAC) Administrator | Subscription
3030
Owner | Resource Group
3131

3232
#### Resource Providers
33-
The Azure subscription that you deploy this solution accelerator in will require both the `Microsoft.OperationsManagement` and `Microsoft.AlertsManagement` resource providers to be registered.
33+
The Azure subscription that you deploy this solution accelerator in will require the `Microsoft.OperationsManagement`, ` Microsoft.Compute` and `Microsoft.AlertsManagement` resource providers to be registered.
3434
This can be accomplished via the [Azure Portal](https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types#azure-ortal) or with the following [Azure CLI](https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types#azure-cli) commands:
3535

3636
```shell
3737
# register providers
3838
az provider register --namespace Microsoft.OperationsManagement
3939
az provider register --namespace Microsoft.AlertsManagement
40+
az provider register --namespace Microsoft.Compute
4041
# verify providers were registered
4142
az provider show --namespace Microsoft.OperationsManagement -o table
4243
az provider show --namespace Microsoft.AlertsManagement -o table
44+
az provider show --namespace Microsoft.Compute -o table
4345
```
4446

4547
## Installation

0 commit comments

Comments
 (0)