Back to Insights
2026-06-02 5 min read Tanuj Garg

Zero Trust by Another Name: How the New HIPAA Rules Mandate Modern Security Architecture

Healthcare Engineering#Zero Trust#HIPAA#Security Architecture#MFA#HealthTech

Introduction

The proposed 2026 HIPAA Security Rule never uses the phrase "zero trust." But read the requirements together—MFA for all workforce access, encryption everywhere, network segmentation, continuous vulnerability scanning, least-privilege access—and you are describing a zero trust architecture by another name.

For engineering teams, this is useful framing. Zero trust is not a product you buy. It is an architecture principle: never trust, always verify, assume breach. The new HIPAA rules make several zero trust principles mandatory rather than aspirational.

This guide maps the proposed HIPAA requirements to zero trust implementation patterns your engineering team can deploy.


Section 1: The HIPAA-to-Zero-Trust Mapping

HIPAA requirementZero trust principleImplementation
MFA for all ePHI accessStrong identity verificationMFA on all systems, FIDO2/WebAuthn preferred
Encryption in transitProtect the data planeTLS 1.2+ everywhere, mTLS for service-to-service
Encryption at restProtect data at restKMS-managed encryption on all ePHI stores
Network segmentationMicro-segmentationIsolate PHI workloads in dedicated VPCs/subnets
Least-privilege accessJust-enough accessRBAC/ABAC with scope-limited API tokens
Vulnerability scanningContinuous verificationBiannual scans + continuous dependency monitoring
Asset inventoryVisibilityDocument every system, service, and data flow touching ePHI
Audit controlsObservable accessLog every authentication, authorization, and data access event

Section 2: Identity Layer (MFA + Least Privilege)

MFA everywhere

The proposed rule requires MFA for all workforce members accessing ePHI. Implementation:

  • SSO with MFA enforcement (Okta, Azure AD, Google Workspace) for all applications,
  • FIDO2/hardware keys for privileged accounts (DBA, admin, DevOps),
  • MFA on API access for service accounts that touch ePHI (use certificate-based auth or short-lived tokens with MFA-gated issuance).

Least-privilege API access

  • Scope-limited tokens: a support API token can read patient records but not export bulk data,
  • Time-limited sessions: 15–30 minute idle timeout on PHI-accessing applications,
  • Just-in-time access: elevated permissions granted for specific tasks, auto-revoked after completion,
  • Role-based + attribute-based access: combine role (nurse, doctor, admin) with context (department, patient relationship).

Section 3: Data Plane Protection (Encryption + Segmentation)

Encrypt every hop

Zero trust assumes the network is hostile. For PHI data flows:

Client → [TLS] → API Gateway → [mTLS] → Service → [mTLS] → Database
                                    ↓
                              [TLS] → Message Queue → [mTLS] → Worker

No plaintext segment. Even "internal" service calls.

Network segmentation

  • Dedicated VPC/subnet for PHI workloads, separate from corporate and dev environments,
  • Security groups that deny by default, allow only required ports between specific services,
  • No direct internet access from PHI subnets (use NAT gateways with logging),
  • Egress filtering to prevent data exfiltration from compromised services.

Section 4: Continuous Verification

Vulnerability scanning

  • Biannual external scans of all internet-facing systems (required),
  • Continuous dependency scanning in CI/CD (recommended beyond compliance),
  • Container image scanning before deployment to PHI environments.

Runtime monitoring

  • Anomaly detection on PHI API access patterns (unusual volume, off-hours access, new geographies),
  • Rate limiting on PHI endpoints to contain breach blast radius,
  • Session recording for privileged access to production PHI systems.

Audit evidence

Every access event produces structured audit logs:

{
  "timestamp": "2026-06-14T10:30:00Z",
  "actor": "[email protected]",
  "action": "read",
  "resource": "patient/12345",
  "scope": "clinical.read",
  "mfa_verified": true,
  "source_ip": "10.0.1.50",
  "result": "allowed"
}

These logs are your compliance evidence and your incident investigation data.


Section 5: Implementation Phases

Month 1: MFA rollout + ePHI asset inventory, Month 2: TLS/mTLS on all PHI data flows, Month 3: Network segmentation + security group hardening, Month 4: Vulnerability scanning program + first scan, Month 5: Audit logging standardization + anomaly detection, Month 6: Penetration test + compliance documentation.

This aligns with the 240-day compliance window.


Section 6: What Zero Trust Does Not Mean

  • Not "zero access." It means verified access, not blocked access.
  • Not a single vendor product. It is an architecture pattern implemented across identity, network, data, and monitoring layers.
  • Not incompatible with developer velocity. Proper segmentation and automated compliance checks reduce manual security reviews.

Conclusion

The new HIPAA rules are zero trust requirements in compliance language. MFA, encryption, segmentation, and continuous verification are no longer best practices—they are mandatory.

Start with MFA and the ePHI data flow map. Everything else builds on visibility.

Related reading:

For HealthTech security architecture: