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
{{ message }}
This repository was archived by the owner on May 27, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/DEPLOYMENT-GUIDE.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,17 @@ You will need the following <a href="https://learn.microsoft.com/en-us/azure/rol
27
27
Contributor | Subscription
28
28
Role Based Access Control (RBAC) Administrator | Subscription
29
29
30
-
#### Resource Provider
31
-
The Azure subscription that you deploy this solution accelerator in will require the `Microsoft.OperationsManagement` resource provider to be registered.
30
+
#### Resource Providers
31
+
The Azure subscription that you deploy this solution accelerator in will require both the `Microsoft.OperationsManagement`and `Microsoft.AlertsManagement`resource providers to be registered.
32
32
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:
33
33
34
34
```shell
35
-
# register provider
35
+
# register providers
36
36
az provider register --namespace Microsoft.OperationsManagement
37
-
# verify provider was registered
37
+
az provider register --namespace Microsoft.AlertsManagement
38
+
# verify providers were registered
38
39
az provider show --namespace Microsoft.OperationsManagement -o table
40
+
az provider show --namespace Microsoft.AlertsManagement -o table
0 commit comments