Skip to content

Commit

Permalink
Add additional req'd Resource Provider (Azure-Samples#37)
Browse files Browse the repository at this point in the history
Co-authored-by: Josh Bradley <joshbradley@microsoft.com>
  • Loading branch information
timothymeyers and jgbradley1 authored Jun 28, 2024
1 parent f70e224 commit 9d73b82
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/DEPLOYMENT-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ You will need the following <a href="https://learn.microsoft.com/en-us/azure/rol
Contributor | Subscription
Role Based Access Control (RBAC) Administrator | Subscription

#### Resource Provider
The Azure subscription that you deploy this solution accelerator in will require the `Microsoft.OperationsManagement` resource provider to be registered.
#### Resource Providers
The Azure subscription that you deploy this solution accelerator in will require both the `Microsoft.OperationsManagement` and `Microsoft.AlertsManagement` resource providers to be registered.
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:

```shell
# register provider
# register providers
az provider register --namespace Microsoft.OperationsManagement
# verify provider was registered
az provider register --namespace Microsoft.AlertsManagement
# verify providers were registered
az provider show --namespace Microsoft.OperationsManagement -o table
az provider show --namespace Microsoft.AlertsManagement -o table
```

## Installation
Expand Down

0 comments on commit 9d73b82

Please sign in to comment.