An Azure service that offers file shares in the cloud.
Azure Files with Microsoft Entra Kerberos authentication doesn't change what the service logs at the platform level. For file operations such as delete, modify, and read, auditing is done via Azure Storage logging rather than NTFS-style on-premises file server auditing.
In this configuration, basic auditing can be achieved by enabling and querying diagnostic logs for the File service on the storage account:
- Enable Azure Monitor diagnostic logs for the File service on the storage account.
- Send these logs to a Log Analytics workspace.
- Use Kusto queries over the File service logs to identify operations such as read, write, delete, and list, including which identity performed them and when.
These logs capture data-plane operations (for example, file reads and writes) and can be used to approximate “who deleted/modified/accessed what and when” even when Microsoft Entra Kerberos is used for SMB access.
Note that Azure Files doesn't expose a native "last accessed" timestamp on files or folders; only CreationTime, LastWriteTime, and ChangeTime are stored. For last access information, diagnostic logs must be used.
References:
- Enable Microsoft Entra Kerberos authentication for hybrid and cloud-only identities on Azure Files
- Troubleshoot Azure Files identity-based authentication and authorization issues (SMB)
- Introduction to Microsoft Entra Kerberos
- How to find the last accessed date of the file or folder in an azure file share? - Microsoft Q&A