Is it possible to run apps on Heroku that are HIPAA compliant? More specifically, I need two apps, one that stores member information and another that stores private health information of the members. I intend to encrypt sensitive data using both asymmetric and symmetric key encryption–asymmetric for the keys that link members with their sensitive data on the other app, and symmetric for specific fields in the members app, such as name, email address and phone. My main concern is that anyone at Heroku can break the asymmetric encryption, since they have access to both apps (and private keys). Am I correct to be concerned about this, or does the infrastructure of Amazon EC2 prevent Heroku staff from accessing both apps?
相关问题
- How to specify memcache server to Rack::Session::M
- Connecting Python to a Heroku PostgreSQL DB?
- rails/heroku migrating from gem to toolbelt
- Using runtime env with React and heroku
- Heroku process.env.port is undefined
相关文章
- Django/Heroku: FATAL: too many connections for rol
- Heroku Web Server Won't Start Locally
- Heroku push issue
- Why does Rake task enhancement differ between my l
- Push rejected, failed to detect set buildpack hero
- Email With Rails 3 and Heroku Net::SMTPSyntaxError
- Heroku db:pull 'db:pull is not a heroku comman
- Rails 4 app on Heroku is 500ing, but no error mess
Heroku has announced their Shield accounts that will provide HIPAA compliance.
From the link
That may or may not obviate the need for BAA's, MOU's, etc.
HIPAA compliance involves a number of different areas, including more than just technology. Specifically regarding the technology requirements within HIPAA, there are a bunch of requirements, but the one that you most obviously can't meet with Heroku is this one:
You need a BAA from Heroku. HIPAA doesn't distinguish between encrypted and unencrypted data when it defines subcontractors and business associates. For a good sense of all that is required of HIPAA, here's a comprehensive list - https://catalyze.io/hipaa/. Hope that helps.
Heroku has told me they will not sign Business Associate Agreements at the moment, so if you store any PHI on the server it is not possible to be HIPAA compliant.
Amazon has a whitepaper on HIPAA compliance with AWS (just google AWS Hipaa compliance) where they talk about their HIPAA bona fides. For example, AWS sysadmins don't have direct login access to customer OS images.
To the best of my knowledge, Heroku has not shared details of how they secure their individual customer accounts.