You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/DEPLOYMENT-GUIDE.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,18 @@ Role Based Access Control (RBAC) Administrator | Subscription
30
30
Owner | Resource Group
31
31
32
32
#### 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.
34
34
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:
35
35
36
36
```shell
37
37
# register providers
38
38
az provider register --namespace Microsoft.OperationsManagement
39
39
az provider register --namespace Microsoft.AlertsManagement
40
+
az provider register --namespace Microsoft.Compute
40
41
# verify providers were registered
41
42
az provider show --namespace Microsoft.OperationsManagement -o table
42
43
az provider show --namespace Microsoft.AlertsManagement -o table
44
+
az provider show --namespace Microsoft.Compute -o table
0 commit comments