Skip to content

Commit d128e8b

Browse files
Create ALZ-Resource-Provider-Recommendations (#1539)
Co-authored-by: Jack Tracey <[email protected]>
1 parent a80bb9f commit d128e8b

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
# ALZ Azure Resource Provider Recommendations
3+
4+
5+
## What are Resource Providers in Azure?
6+
7+
An Azure resource provider is a set of REST operations that enable functionality for a specific Azure service. For example, the Key Vault service consists of a resource provider named **Microsoft.KeyVault**. The resource provider defines [REST operations](https://learn.microsoft.com/rest/api/keyvault/) for managing vaults, secrets, keys, and certificates.
8+
9+
To deploy a resource in Azure, you must ensure your Azure subscription is registered for the resource provider that is associated with that resource. Registration configures your subscription to work with the resource provider. You can view a list of all resource providers in Azure by service [here](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers#registration). Learn how to view all your resource providers in the portal [here](https://learn.microsoft.com/azure/azure-resource-manager/management/resource-providers-and-types#view-resource-provider).
10+
11+
## Default Resource Providers
12+
13+
Some resource providers are turned on by Azure by default on all subscriptions during time of subscription creation and are not possible to unregister. Some examples are Microsoft.SerialConsole, Microsoft.Authorization, and Microsoft.Consumption. You can view a list of providers turned on by default by service [here](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers#registration). Resource providers marked with **- registered by default** in the tables are automatically registered for your subscription, and you do not need to worry about them.
14+
15+
## Resource Providers for Enterprise-Scale ALZ Deployment (Empty Subscriptions)
16+
17+
To successfully deploy an Enterprise-Scale with a predefined [template](https://aka.ms/caf/ready/accelerator), along with ensuring other [prerequisites](https://github.com/Azure/Enterprise-Scale/wiki/Deploying-ALZ-Pre-requisites) are complete, ensure these Resource Providers are [registered](https://learn.microsoft.com/azure/azure-resource-manager/management/resource-providers-and-types) in ALL subscriptions associated with your new Landing Zone:
18+
19+
* microsoft.insights
20+
* Microsoft.AlertsManagement
21+
* Microsoft.OperationalInsights
22+
* Microsoft.OperationsManagement
23+
* Microsoft.Automation
24+
* Microsoft.AlertsManagement
25+
* Microsoft.Security
26+
* Microsoft.Network
27+
* Microsoft.EventGrid
28+
* Microsoft.ManagedIdentity
29+
* Microsoft.GuestConfiguration
30+
* Microsoft.Advisor
31+
* Microsoft.PolicyInsights
32+
33+
This list of RPs is all you need to deploy Enterprise Scale for EMPTY subscriptions (only resources listed in the template). If you want to deploy additional resources, please ensure the RPs for those resources are also registered.
34+
35+
Most of the time, if they are not registered prior, Azure should automatically register them for you. However, in some cases, deployment fails if the proper Resource Providers are not registered.
36+
37+
# Additional Recommended Resource Providers to Register (for common resources)
38+
39+
Some other common Resource Providers to consider having registered in your subscriptions for resources you may deploy are:
40+
41+
* Microsoft.Compute
42+
* Microsoft.Storage
43+
* Microsoft.ResourceHealth
44+
* Microsoft.KeyVault
45+
* Microsoft.Sql
46+
* Microsoft.Capacity
47+
* Microsoft.ManagedServices
48+
* Microsoft.Management
49+
* Microsoft.SecurityInsights
50+
* Microsoft.Blueprint
51+
* Microsoft.Cache
52+
* Microsoft.RecoveryServices

docs/wiki/Whats-new.md

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ Yes, the Q2 Policy Refresh has been delayed due to a light past quarter and some
8181
#### Documentation
8282

8383
- Updated broken links in [Deploying ALZ ZT Network](https://github.com/Azure/Enterprise-Scale/wiki/Deploying-ALZ-ZTNetwork#azure-landing-zone-portal-accelerator-deployment-with-zero-trust-network-principles)
84+
- Added wiki document for recommended Resource Providers to register for Subscriptions in ALZ [ALZ Azure Resource Provider Recommendations](https://github.com/Azure/Enterprise-Scale/wiki/ALZ-Resource-Provider-Recommendations)
8485

8586
### December 2023
8687

docs/wiki/_Sidebar.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* [What happens when you deploy Enterprise-Scale?](./How-Enterprise-Scale-Works#what-happens-when-you-deploy-enterprise-scale)
2020
* Deploying Enterprise-Scale
2121
* [Pre-requisites](./Deploying-ALZ-Pre-requisites)
22+
* [ALZ Resource Providers Guidance](./ALZ-Resource-Provider-Recommendations)
2223
* [Configure Microsoft Entra permissions](./ALZ-Setup-aad-permissions)
2324
* [Configure Azure permissions](./ALZ-Setup-azure)
2425
* [Deploy landing zones](./ALZ-Deploy-landing-zones)

0 commit comments

Comments
 (0)