Menu
Azure Architecture Blog·May 19, 2026

Cloud-Native Identity for Azure Files SMB: Simplifying Access with Entra-Only Identities

This article discusses the general availability of Entra-Only identities for Azure Files SMB, a significant advancement for cloud-native storage. It enables secure, identity-based access to SMB file shares directly via Microsoft Entra ID, eliminating the need for on-premises Active Directory or hybrid synchronization. This simplifies architecture, reduces operational overhead, and enhances security posture by aligning with Zero-Trust principles for VDI, general-purpose file sharing, and remote workforces.

Read original on Azure Architecture Blog

The introduction of Entra-Only identities for Azure Files SMB marks a pivotal shift towards fully cloud-native identity management for file storage. Traditionally, SMB file share access often relied on on-premises Active Directory (AD) for authentication and authorization, even in cloud environments. This new feature allows organizations to use Microsoft Entra ID (formerly Azure AD) as the primary Kerberos Key Distribution Center (KDC), simplifying the architectural landscape significantly.

Architectural Simplification and Benefits

The core architectural change is the removal of dependencies on Active Directory Domain Controllers, hybrid sync tools (like Entra Connect), or managed domain services. This drastically reduces the complexity and maintenance burden for cloud deployments. Key benefits include:

  • Simplified Operations: Eliminates the overhead of managing on-premises AD infrastructure, VPNs, and hybrid identity lifecycles.
  • Enhanced Security: Aligns with Zero-Trust principles by enabling direct authentication against Entra ID and providing secure access from anywhere without complex networking.
  • Cloud-Native Adoption: Removes a major blocker for migrating on-premises Windows-based workloads, especially VDI and general-purpose file sharing, to a purely cloud environment.
  • Granular Permissions: Introduces portal-based NTFS permissions management and expanded RBAC support for Entra-Only users and groups, streamlining authorization.

How Entra-Only Identities Work

When a client accesses an Azure File share, it requests a Kerberos ticket directly from Microsoft Entra ID. This ticket contains cloud-based security identifiers (SIDs) and is presented during the SMB session setup. Azure Files then validates the ticket and establishes the session. The underlying SMB protocol remains compatible, but the identity validation shifts entirely to Entra, ensuring secure, identity-based access without AD. Authorization continues to use NTFS ACLs, now manageable directly in the Azure portal for Entra-Only identities.

💡

System Design Implication: Reduced Attack Surface

By moving identity management for file shares entirely to Entra ID, organizations can significantly reduce their attack surface. Dependencies on on-premises infrastructure, which often requires opening firewall ports or establishing complex VPNs, are removed. This centralizes identity management in a robust, cloud-native service, improving overall security posture and simplifying compliance audits.

Key Use Cases and Modernization

  • Virtual Desktop Infrastructure (VDI): Simplifies FSLogix profile management in Azure Virtual Desktop (AVD) by enabling a fully cloud-native identity, compute, and storage stack. This removes hybrid identity dependencies, streamlines deployments, and supports B2B scenarios.
  • General-Purpose File Sharing: Modernizes file sharing for information workers and distributed teams, allowing consistent, identity-driven access without domain-joined devices or on-premises network connectivity.
  • Remote Workforces: Enables secure access to critical datasets from remote locations, particularly in industries like oil and gas, without complex multi-domain AD configurations or VPNs.
  • Managed Identities for Applications: Supports Entra-native application access to Azure Files, removing the need for shared keys or secrets and simplifying DevOps workflows for services like AKS.
Azure FilesMicrosoft Entra IDSMBCloud-NativeIdentity ManagementKerberosVDIZero Trust

Comments

Loading comments...

Architecture Design

View Architecture
Design a cloud-native Virtual Desktop Infrastructure (VDI) solution using Azure Virtual Desktop (AVD) and Azure Files. Focus on integrating Entra-Only identities for user profile management and secure SMB access, eliminating any reliance on on-premises Active Directory. Detail the architectural components for identity, storage, and compute, and discuss how to ensure seamless user experience, security, and scalability for a distributed workforce.
Practice Interview
Focus: cloud-native identity and access management for file shares