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 prevent 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β
From 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 tenants
is set toYes
.
From 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
.