Reputation: 31
Building an API that needs to be HIPPA compliant.
So far the stack is
FastApi -> Docker Image -> AWS Lambda with Env Variables -> AWS API Gateway secured endpoints with API Keys.
While encrypting the database on MongoDb, doesn't seem like MongoDB's transport encrypts the payload (I understand that it's using HTTPS, so it encrypts the entire message)
They have an encrypt in store which is HIPPA requirements ofc but made me wonder,
For my Client Side API, do I need to Encrypt the payload to be HIPPA compliant? Or does enforcing an API key with HTTPS suffice?
Upvotes: -1
Views: 54