Skip to main content

Command Palette

Search for a command to run...

Determine the user identity model for your organization

Published
3 min readView as Markdown
Determine the user identity model for your organization
P

Cloud and systems engineer with a strong foundation in networking, automation, and infrastructure design. I write about real-world challenges, best practices, and evolving trends in cloud computing, system administration, and network architecture.

Microsoft 365 supports three main identity models:

  • Cloud Identities

  • Synchronized Identities

  • Federated Identities

Choosing the right model depends on your org’s size, infrastructure, and authentication requirements.


1. Cloud Identities

  • Definition:

    • User account exists only in Microsoft Entra ID (formerly Azure AD).

    • No on-premises Active Directory dependency.

  • Management:

    • Admins create and manage accounts in Microsoft 365 Admin Center.
  • Characteristics:

    • Each user has their own username/password stored in Entra ID.

    • No link to on-prem AD even if names are the same.

  • Best for:

    • Small orgs or startups that don’t need AD DS anymore.
  • Benefit:

    • Simple setup, no sync or federation required.

2. Synchronized Identities

  • Definition:

    • User exists in on-premises AD DS and in Microsoft 365.

    • Accounts are linked and synchronized.

  • Synchronization tools:

    • Microsoft Entra Connect Sync

    • Microsoft Entra Cloud Sync

  • Management:

    • On-prem AD DS is authoritative source.

    • Most changes (like passwords, group memberships) are made on-prem → synced to cloud.

  • Authentication:

    • By default → happens in Microsoft 365.

    • If Pass-Through Authentication (PTA) is enabled → authentication happens directly against on-prem AD DS.

  • Best for:

    • Orgs that already run on-prem AD DS and are moving gradually to the cloud.
  • Benefit:

    • Same Sign-In → users have the same credentials on-prem and in Microsoft 365.

3. Federated Identities

  • Definition:

    • User accounts synchronized from on-prem AD DS, but authentication is delegated to an external IdP (like AD FS).
  • How it works:

    1. User tries to log into Microsoft 365.

    2. Entra ID redirects request to trusted IdP (e.g., AD FS).

    3. IdP authenticates user (Kerberos, smart card, etc.) and issues a security token.

    4. Microsoft Entra ID validates the token → grants access.

  • Setup requires:

    • Trust relationship between Microsoft 365 and IdP.

    • Exchange of metadata (certificates, endpoints).

    • Configuration of trust policies.

  • Authentication dependency:

    • Relies on on-premises IdP availability (e.g., if AD FS is down, users can’t log in).

    • Mitigation = deploy AD DS & AD FS in Azure for redundancy.

  • Best for:

    • Large enterprises needing Single Sign-On (SSO) or special authentication methods (e.g., ID card logins).
  • Benefit:

    • True SSO → users log into their Windows workstation once, then get access to Microsoft 365 automatically.

    • Enforces on-prem password/account lockout policies.


4. Comparison Table

ModelDefinitionBest ForAuthentication LocationGreatest Benefit
Cloud IdentityUser only in Microsoft Entra IDSmall orgs, no AD DSEntra ID (cloud)Simple to use, no extra tools
Synchronized IdentityUser in both AD DS & Entra ID (synced)Orgs with existing AD DS moving to cloudBy default: Entra ID; With PTA: On-prem AD DSSame Sign-In with one identity source
Federated IdentityUser in AD DS, auth via IdP (e.g., AD FS)Large orgs needing SSO, special auth methodsOn-prem IdP (redirected from Entra ID)Single Sign-On + strong on-prem policy control

5. Key Takeaways for Study

  • Cloud identity = simplest, only in Microsoft Entra ID → great for small orgs.

  • Synchronized identity = hybrid model, syncs AD DS with cloud → most common for medium/large orgs.

  • Federated identity = requires AD FS or external IdP → gives full SSO but more complex.

  • Entra Connect Sync / Cloud Sync = tools for identity synchronization.

  • PTA = lets synchronized identities authenticate directly against on-prem AD DS.

  • SSO benefit → only true with federated identities.

5 views

More from this blog

AWS

33 posts