Ensure 'Restrict non-admin users from creating tenants' is set to 'Yes'
Description
Require administrators or appropriately delegated users to create new tenants.
Rationale
It is recommended to only allow an administrator to create new tenants. This prevents users from creating new Microsoft Entra ID or Azure AD B2C tenants and ensures that only authorized users are able to do so.
Impact
Enforcing this setting will ensure that only authorized users are able to create new tenants.
Audit Procedure
Using Azure Portal
- From Azure Home select the Portal Menu
- Select
Microsoft Entra ID - Under
Manage, selectUsers - Under
Manage, selectUser settings - Ensure that
Restrict non-admin users from creating tenantsis set toYes
Using PowerShell
Import-Module Microsoft.Graph.Identity.SignIns
Connect-MgGraph -Scopes 'Policy.ReadWrite.Authorization'
Get-MgPolicyAuthorizationPolicy | Select-Object -ExpandProperty DefaultUserRolePermissions | Format-List
Review the "DefaultUserRolePermissions" section of the output. Ensure that AllowedToCreateTenants is not True.
Expected Result
In the Azure Portal, Restrict non-admin users from creating tenants should be set to Yes. In PowerShell, AllowedToCreateTenants should be False.
Remediation
Using Azure Portal
- From Azure Home select the Portal Menu
- Select
Microsoft Entra ID - Under
Manage, selectUsers - Under
Manage, selectUser settings - Set
Restrict non-admin users from creating tenantstoYes - Click
Save
Using PowerShell
Import-Module Microsoft.Graph.Identity.SignIns
Connect-MgGraph -Scopes 'Policy.ReadWrite.Authorization'
Select-MgProfile -Name beta
$params = @{
DefaultUserRolePermissions = @{
AllowedToCreateTenants = $false
}
}
Update-MgPolicyAuthorizationPolicy -AuthorizationPolicyId -BodyParameter $params
Default Value
By default, users can create tenants.
References
- https://learn.microsoft.com/en-us/entra/fundamentals/users-default-permissions
- https://learn.microsoft.com/en-us/entra/identity/role-based-access-control/permissions-reference#tenant-creator
- https://blog.admindroid.com/disable-users-creating-new-azure-ad-tenants-in-microsoft-365/
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 6.8 Define and Maintain Role-Based Access Control | x | ||
| v7 | 14.6 Protect Information through Access Control Lists | x | x | x |
Profile
Level 1 | Automated