Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit 9d73b82

Browse files
Add additional req'd Resource Provider (#37)
Co-authored-by: Josh Bradley <[email protected]>
1 parent f70e224 commit 9d73b82

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/DEPLOYMENT-GUIDE.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,17 @@ You will need the following <a href="https://learn.microsoft.com/en-us/azure/rol
2727
Contributor | Subscription
2828
Role Based Access Control (RBAC) Administrator | Subscription
2929

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.
3232
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:
3333

3434
```shell
35-
# register provider
35+
# register providers
3636
az provider register --namespace Microsoft.OperationsManagement
37-
# verify provider was registered
37+
az provider register --namespace Microsoft.AlertsManagement
38+
# verify providers were registered
3839
az provider show --namespace Microsoft.OperationsManagement -o table
40+
az provider show --namespace Microsoft.AlertsManagement -o table
3941
```
4042

4143
## Installation

0 commit comments

Comments
 (0)