Skip to content
Wizbang
LoginBook a Call

July 31, 2026

HIPAA Compliance for Startup CTOs: What You Actually Need to Do

Your health tech startup just landed its first pilot with a hospital system. The procurement team sends over a Business Associate Agreement. Your head of sales forwards it to you with "can you review this?"

You read it. It references HIPAA, PHI, breach notification requirements, and penalties up to $1.5M per violation. You realize you've been storing patient data in a standard DynamoDB table with no access logging.

This is the moment most health tech CTOs learn that HIPAA isn't optional — and that the gap between "we use AWS" and "we're HIPAA compliant" is wider than they thought.

Does HIPAA Apply to You?

HIPAA applies if your startup handles Protected Health Information (PHI) in connection with a covered entity (hospital, health plan, healthcare provider, or health clearinghouse).

You're probably a Business Associate if:

  • Your product stores, processes, or transmits patient data for a healthcare provider
  • You provide analytics, billing, or administrative services using health data
  • You're building infrastructure or tools that touch clinical workflows

You're probably NOT covered if:

  • You build consumer wellness apps that don't connect to healthcare providers
  • Your product handles only de-identified data (and you meet HIPAA's strict de-identification standard)
  • You're a pure B2B SaaS with no healthcare customers

The gray area: fitness trackers, mental health apps, and wellness platforms often start outside HIPAA and drift into it when they integrate with EHRs or accept insurance. If you're not sure, assume you're covered — the penalties for guessing wrong are severe.

The Three HIPAA Safeguard Categories

HIPAA's Security Rule requires three types of safeguards: Administrative, Physical, and Technical. For a cloud-native startup, here's what actually matters.

Technical Safeguards (Where You'll Spend Most of Your Time)

Access Controls

  • [ ] Implement unique user IDs for every person accessing PHI — no shared accounts
  • [ ] Enforce role-based access control (RBAC) limiting PHI access to those who need it
  • [ ] Implement automatic session timeouts (15 minutes is the common standard)
  • [ ] Use MFA for all systems that can access PHI
  • [ ] Log all access to PHI: who accessed what, when, and why

Encryption

  • [ ] Encrypt all PHI at rest using AES-256 (RDS, DynamoDB, S3, EBS volumes)
  • [ ] Encrypt all PHI in transit using TLS 1.2 or higher
  • [ ] Manage encryption keys through AWS KMS or equivalent — never store keys alongside the data
  • [ ] Encrypt backups. This is the one most startups miss.

Audit Controls

  • [ ] Enable AWS CloudTrail across all regions and accounts
  • [ ] Log all database queries that touch PHI tables
  • [ ] Set up tamper-proof log storage (S3 with Object Lock or equivalent)
  • [ ] Retain audit logs for a minimum of 6 years (HIPAA's retention requirement)
  • [ ] Implement real-time alerting on suspicious access patterns

Integrity Controls

  • [ ] Implement checksums or hashing to detect unauthorized PHI modification
  • [ ] Use database-level constraints and application-level validation to prevent data corruption
  • [ ] Version-control all PHI-touching code with mandatory code review

Administrative Safeguards

  • [ ] Designate a Security Officer (this can be your CTO or a fractional CISO)
  • [ ] Conduct an annual risk assessment documenting threats, vulnerabilities, and mitigations
  • [ ] Write policies covering: access management, incident response, data backup, workforce training, and business associate management
  • [ ] Train all employees who touch PHI — document training completion and refresh annually
  • [ ] Implement a sanction policy for workforce members who violate HIPAA policies

Physical Safeguards

For cloud-native startups, your cloud provider handles most physical safeguards (data center security, hardware disposal). But you still need to:

  • [ ] Ensure employee workstations that access PHI have full-disk encryption
  • [ ] Implement remote wipe capability for devices that can access PHI
  • [ ] Document your physical security practices, even if they're minimal

AWS-Specific HIPAA Requirements

If you're building on AWS (most health tech startups are), there are specific steps:

  1. Sign a BAA with AWS. This is non-negotiable. AWS will only accept HIPAA liability for services covered under their BAA. Go to the AWS Artifact console and accept it.

  2. Use only HIPAA-eligible services. Not every AWS service is covered under the BAA. The major ones are: EC2, RDS, DynamoDB, S3, Lambda, API Gateway, CloudFront, SQS, SNS, and ECS. Check the current list before adopting any new service.

  3. Isolate PHI workloads. Run PHI-handling services in a dedicated AWS account or VPC. Don't mix PHI and non-PHI workloads in the same security boundary.

  4. Enable AWS Config Rules for continuous compliance monitoring. Rules like encrypted-volumes, cloud-trail-encryption-enabled, and rds-storage-encrypted catch misconfigurations before they become violations.

For a broader AWS security checklist, see our dedicated guide.

The Business Associate Agreement

Every relationship where PHI is shared requires a signed BAA. This includes:

  • Your cloud provider (AWS, GCP, Azure)
  • Your database hosting provider
  • Your email provider (if you send PHI via email — try not to)
  • Your logging/monitoring tools (if they ingest PHI)
  • Your compliance automation platform
  • Any contractor or vendor with PHI access

No BAA = no sharing PHI. It's that simple. And if a vendor won't sign a BAA, find one that will.

HIPAA Breach Notification Rules

If a breach occurs, HIPAA has strict notification requirements:

  • Individuals affected: Notify within 60 days of discovering the breach
  • HHS (Department of Health and Human Services): Notify within 60 days if 500+ individuals affected; annual report if fewer
  • Media: Notify prominent media outlets if 500+ individuals in a single state are affected

The 60-day clock starts when you discover the breach — or when you should have discovered it with reasonable diligence. This is why audit logging and monitoring matter: if you can't detect a breach, the clock may have already been running for months.

The Penalties Are Real

HIPAA penalties are tiered based on the level of negligence:

| Tier | Violation Type | Per Violation | Annual Max | |------|---------------|---------------|------------| | 1 | Didn't know / couldn't know | $100–$50,000 | $25,000 | | 2 | Reasonable cause (not willful neglect) | $1,000–$50,000 | $100,000 | | 3 | Willful neglect, corrected | $10,000–$50,000 | $250,000 | | 4 | Willful neglect, not corrected | $50,000 | $1,500,000 |

Criminal penalties can include up to 10 years in prison for intentional misuse of PHI. State attorneys general can also bring separate enforcement actions.

The 4-Week HIPAA Starter Plan

If you're starting from scratch and need to get compliant fast:

Week 1: Sign the AWS BAA, enable encryption everywhere, enforce MFA, isolate PHI workloads in a dedicated VPC.

Week 2: Implement audit logging (CloudTrail + application-level PHI access logs), set up tamper-proof log retention, configure monitoring alerts.

Week 3: Write core policies (access management, incident response, risk assessment, breach notification), designate a Security Officer, document your data flow.

Week 4: Conduct your initial risk assessment, train your team, sign BAAs with all PHI-touching vendors, implement the remaining access controls.

This gets you to a defensible baseline. It doesn't make you audit-ready for a large health system — that typically requires a more formal assessment and potentially a third-party audit (HITRUST certification is the gold standard, but it's expensive and takes 6–12 months).

When to Get Help

HIPAA is one of the areas where DIY has the highest risk. The regulations are complex, the penalties are severe, and healthcare customers will audit you. A startup building its first health tech product should seriously consider bringing in a fractional security advisor with specific HIPAA experience.

The cost of a consultant ($5,000–$15,000) is trivial compared to the cost of a breach ($100K+ in fines alone, plus customer trust destruction and potential criminal liability).

Book a free discovery call — I'll assess your current HIPAA posture and give you a specific plan to close the gaps before your next customer audit.

— Sean, Founder at Wizbang

Need expert security guidance?

Book a free intro call — no pitch, just a practical assessment of where you stand.

Get Started

Fractional CTO, CIO, CISO and AI Agent Engineering. Executive-level technology leadership for companies that need a senior technical partner without a full-time hire.

© 2026 Wizbang. All rights reserved.

Privacy PolicyTerms of Service