Table of Contents
Introduction
Managing identity and access in the cloud is critical for any modern organization. With Azure Active Directory (Azure AD), you can set up dedicated tenants to separate environments, control access, and manage users efficiently.
In this guide, weāll walk you through the process of creating a new Azure AD tenant for your organization.
What is an Azure AD Tenant?
In Microsoft Azure, a tenant is essentially your organizationās dedicated instance of Azure Active Directory (Azure AD).Think of it as a container for identity and access management:It stores your users, groups, applications, and security settings.It provides a secure boundary for managing resources. Each tenant is unique and isolated from other tenants.
When you sign up for Azure, Microsoft 365, or another Microsoft cloud service, a tenant is automatically created for your organization.
Key Characteristics of an Azure Tenant:
1. Unique Domain ā Every tenant has a unique domain name like yourorg.onmicrosoft.com.
2. Isolated Environment ā Your tenant is separate from other organizationsā tenants.
3. Single Identity System ā It manages authentication and authorization for users and apps.
4. Global Administrator Role ā The person who creates the tenant becomes the first Global Admin.
5. Multiple Tenants Possible ā You can create more than one tenant, e.g., one for production and one for development.
Example:
Suppose your company is Contoso Ltd.When you create a tenant, Azure gives you something like:contoso.onmicrosoft.comInside this tenant, you can add employees as users, create groups, and assign apps like Microsoft 365, Dynamics, or custom business apps.
Difference Between a Tenant and a Subscription in Azure
š¹ Azure TenantA tenant is your organizationās instance of Azure Active Directory (Azure AD). It represents your companyās identity boundary in the Microsoft cloud.It manages users, groups, apps, and authentication. Every tenant has a unique domain like yourcompany.onmicrosoft.com.Itās free to have a tenant (you donāt pay for just having a tenant).
š Think of a tenant as the identity and access management container.
š¹ Azure Subscription
A subscription is the billing and resource container in Azure. It defines what services you can use and how you pay for them. A subscription is tied to a tenant for identity.You can have multiple subscriptions under a single tenant (e.g., one for development, one for production). Subscriptions contain Azure resources like VMs, databases, storage, etc.
š Think of a subscription as the wallet + resources container.
š¹ Example to Understand Easily
Your company Contoso Ltd. signs up for Azure.Microsoft creates a tenant: contoso.onmicrosoft.com. Inside this tenant, you create:Subscription 1 (Production) ā pay for VMs, storage, SQL DB.Subscription 2 (Development) ā used by devs for testing.
Both subscriptions belong to the same tenant (so they share users & identity).
Prerequisites
Before creating a tenant, make sure you:
- Have a valid Azure subscription.
- Hold Global Administrator or Owner permissions in Azure.
Steps to Create a New Tenant in Azure AD
Follow these steps to create a tenant in the Azure portal:
1. Log in to the Azure Portal
Go to portal.azure.com and sign in with your administrator account.
2. Create a New Tenant
- Click on + Create a resource or search for Azure Active Directory.
- Select Manage tenants.
- A new window will appear with options to create:
- Azure Active Directory tenant
- Azure Active Directory (B2C) tenant
š For most scenarios, choose Azure Active Directory tenant.
3. Configure the Tenant
- Go to the Configuration tab.
- Fill in the required details:
- Name of the organization
- Initial domain name
- Country or region where the directory will be hosted
ā ļø Important: Once you select a region, you cannot change it later. The chosen location will host the original directory and its primary replica.
4. Assign Roles
- After creation, the user who creates the tenant automatically becomes the Global Administrator of that tenant.
- You can add more administrators and assign roles later as needed.
Final Thoughts
By following these steps, you can easily create a new tenant in Azure Active Directory. Whether youāre separating development and production environments or setting up a fresh directory for a new project, tenants help maintain security and organization.
With the right planning, youāll have a clean and scalable identity management setup that supports both internal and external users.
ā Pro Tip: If youāre learning Azure, consider creating a test tenant first. This allows you to experiment with features like conditional access, identity protection, and app registrations without affecting your production environment.
- Design