The short answer. Microsoft's mandatory MFA program for Microsoft Entra rolls out in two phases. Phase 1 (Azure portal, Entra admin center, Intune admin center) finished worldwide rollout in March 2025. Phase 2 (Azure Resource Manager — CLI, PowerShell, REST API, IaC tools) began October 1, 2025 with a final postponement deadline of July 1, 2026. Microsoft has stated there will be no further extensions. Separately, on February 9, 2026, the Microsoft 365 admin center moves to hard MFA enforcement, blocking sign-in for any admin without MFA registered. The work between now and July 1 is a readiness audit, not a project.

Published · HI Tech Hui · ~7 min read

What changes on July 1, 2026

Phase 2 of mandatory MFA extends the MFA requirement from interactive admin portals to the Azure Resource Manager (ARM) control plane. Per Microsoft's official guidance, the enforcement applies to any user performing Create, Update, or Delete operations through:

  • Azure CLI (az) and Azure PowerShell modules
  • The Azure mobile app
  • REST API endpoints (management.azure.com)
  • Azure SDK client libraries (.NET, Python, JavaScript, Java, Go)
  • Infrastructure-as-Code tools, including Terraform, Bicep, ARM templates, Pulumi, and Ansible

Read operations are not in scope. Workload identities — managed identities and service principals — are explicitly excluded from both phases. The enforcement target is human users performing privileged operations through programmatic clients, which is precisely the gap Phase 1 left open.

Tenants can postpone enforcement at aka.ms/postponePhase2MFA until July 1, 2026. After that date, Microsoft has confirmed no additional postponement windows. For Hawaii businesses currently relying on postponement, the runway is roughly five weeks from publication of this post.

The earlier deadline most teams missed: February 9, 2026

Phase 2 gets the headlines, but the Microsoft 365 admin center moved to hard MFA enforcement on February 9, 2026. The change blocks sign-in to admin.microsoft.com, admin.cloud.microsoft, and portal.office.com/adminportal/home for any administrator without MFA registered. There is no grace period and no per-tenant gradual rollout at this layer.

In the Hawaii SMB environments we audit, the most common impact pattern is the same one we see for cyber insurance findings: a long-standing owner or global administrator account, often shared across two or three people, with MFA never enabled because “we use it once a quarter.” That account stopped working on February 9. If your team has been doing M365 admin through a secondary path since then, this is the moment to clean it up rather than continue working around the lockout.

Why the ARM layer matters for Hawaii businesses

A common assumption among SMBs is that ARM enforcement only affects organizations with large Azure footprints. That is not how the rule works. The trigger is any user-identity write operation against ARM, regardless of resource count. Several environments where Hawaii businesses unknowingly hit this scope:

  • Microsoft 365 tenants with even one Azure subscription — commonly attached for Microsoft Defender, Sentinel, log retention, or a single Azure storage account used by a line-of-business app.
  • Hybrid identity — Entra Connect sync servers, Entra Cloud Sync, or pass-through authentication agents managed through ARM.
  • Backup vaults and recovery services — Azure Backup, Site Recovery, and many third-party backup products provision Recovery Services vaults that are ARM resources.
  • Microsoft Defender for Cloud, Defender for Endpoint, and Defender for Identity — configuration changes flow through ARM.
  • Power Platform, Dynamics 365, and Fabric — environments and capacity allocations touch ARM.
  • CSP/partner-managed subscriptions — even if your IT partner does the work, your user accounts may still be the identities executing the operations.

If any of the above apply, Phase 2 enforcement applies. The question is no longer whether the tenant is in scope; it is whether the right identities are configured for MFA and the wrong identities (user accounts running automations) have been migrated off.

The five-item readiness audit

This is the audit we run for Hawaii managed IT clients ahead of the July 1 deadline. It is deliberately short.

1. Inventory every administrative role assignment

Pull the current membership of Global Administrator, Privileged Role Administrator, Billing Administrator, User Administrator, Authentication Administrator, Conditional Access Administrator, Security Administrator, and any custom roles with write access to ARM. For each member, confirm: MFA is registered, the registered methods are phishing-resistant where possible (passkey/FIDO2 or Windows Hello for Business), and the account has a current owner. Shared admin accounts get split into named accounts now, not later.

2. Find the user identities being used as service accounts

This is the failure mode that takes down environments after enforcement. Look for scheduled tasks, PowerShell runbooks, CI/CD pipelines, IaC apply jobs, backup tools, and reporting scripts that sign in with a user identity rather than a managed identity or service principal. The Entra sign-in logs filtered by non-interactive sign-ins and by client app (Azure CLI, Azure PowerShell, Azure SDK) surface the candidates. Each one needs a migration path: managed identity for resources inside Azure, app registration with workload identity federation for GitHub Actions and Azure DevOps, or service principal with a short-lived certificate for the rest.

3. Convert break-glass accounts to phishing-resistant MFA

Microsoft's emergency access account guidance historically allowed organizations to exclude break-glass accounts from MFA-required Conditional Access policies. Under mandatory MFA, that exclusion no longer keeps the account out of scope — the system-level enforcement applies regardless. Microsoft now recommends configuring break-glass accounts with passkey (FIDO2) or certificate-based authentication, both of which satisfy the MFA requirement without depending on a phone, an authenticator app on a personal device, or any single person being reachable. For a Hawaii business with one or two owners, this is the single most consequential step in the audit.

4. Update tooling versions and verify Conditional Access

Microsoft recommends Azure CLI 2.76+ and Azure PowerShell 14.3+ for the smoothest Phase 2 experience. Older versions can produce confusing failure modes when MFA is challenged mid-script. Separately, configure a Conditional Access policy (or Security Defaults, if Conditional Access is unavailable) that requires MFA for all users accessing Microsoft Azure Management. This puts the MFA prompt inside your own policy — auditable, exportable, and tied to your sign-in logs — rather than relying solely on the system-level enforcement.

5. Document the posture for cyber insurance and audit

By July 1, 2026, “we have mandatory MFA on all admin paths” is no longer a maturity flex; it is a baseline. The evidence that matters under audit is the inventory: which roles, which identities, which automations migrated to managed identities, which break-glass accounts use FIDO2, and which Conditional Access policy enforces it. This is the same evidence package that holds up to a cyber insurance renewal questionnaire and to a SOC 2 control test.

What this looks like for Hawaii’s targeted sectors

  • Hawaii healthcare and clinics: mandatory MFA on every admin path aligns directly with HIPAA Security Rule access-control and audit-control standards. The migration of script-running user accounts to managed identities is a defensible artifact for an OCR audit.
  • Hawaii finance and professional services: cyber insurance applications now ask whether MFA is enforced on all administrative access, including programmatic. Phase 2 readiness is the underwriting answer.
  • Hawaii law firms: partner-impersonation and Business Email Compromise scenarios almost always begin with an admin path that lacks MFA. Closing the ARM layer removes one of the remaining quiet routes to tenant compromise.

Where this connects to the rest of the program

Mandatory MFA enforcement closes the most-abused admin path but it does not stop adversary-in-the-middle token theft, which we covered in the AiTM defense plan. The two efforts are complementary: mandatory MFA forces the challenge, and phishing-resistant methods plus token-protection policies make the challenge actually defeat a modern phishing kit. For organizations still finishing the KEV-based patching SLA, mandatory MFA is the identity-layer counterpart to that vulnerability-layer discipline. Together they cover the two attack paths that account for the bulk of intrusions we see in Hawaii small and mid-sized businesses.

The five-week plan

For a Hawaii business that has not run this audit yet, here is a realistic plan between now and July 1:

  • Week 1. Inventory administrative role assignments. Identify and split any shared admin accounts. Confirm MFA registration for every named admin.
  • Week 2. Pull non-interactive sign-in logs for the last 90 days. Build the list of user identities executing automations. Pick a migration target for each (managed identity, workload-identity federation, or service principal).
  • Week 3. Convert break-glass accounts to FIDO2 or certificate-based authentication. Test sign-in. Document recovery procedures and storage location.
  • Week 4. Configure or verify the Conditional Access policy requiring MFA for Microsoft Azure Management. Update Azure CLI and Azure PowerShell to current versions on all admin workstations and pipeline runners.
  • Week 5. Migrate the highest-volume user-identity automations off. Validate. Pull a final inventory for the audit folder. Confirm postponement is no longer needed and remove it.

What this looks like with HI Tech Hui

For organizations on HI Tech Hui managed IT services, mandatory MFA readiness is part of the standard Entra hardening posture: privileged role review, phishing-resistant MFA rollout, break-glass account configuration, migration of user-identity automations to managed identities or workload-identity federation, and Conditional Access policy authorship and review. For Microsoft 365 tenants, we maintain the evidence pack that supports cyber insurance renewals, SOC 2 control tests, and HIPAA risk-management documentation. Detection coverage for post-MFA techniques, including AiTM token theft and consent phishing, runs through the Cyberuptive 24/7 SOC.

Sources


Need a readiness audit before the July 1, 2026 Phase 2 MFA deadline? HI Tech Hui’s managed IT services team handles the role inventory, automation migration, break-glass hardening, and Conditional Access work, with detection coverage through our SOC. Get in touch.

Ready when you are

Let’s scope your IT & security plan.

Talk with a Honolulu-based engineer about managed IT, cybersecurity, or a 24/7 SOC handoff. We’ll review your current environment, identify the highest-impact gaps, and outline a clear next step — with no obligation.

HI Tech Hui team