I am trying to find good technical resources for GDPR. Most of the articles I found up until now are generic guidelines and don't offer hints on how to implement them concretely (outside of some obvious things like having a "forget me" button).
I am working on an IoT startup with a cloud backend on AWS, so my interest is more geared toward how I could design my application from scratch to be compliant.
Examples of questions I have:
- How should I design my services/infrastructure to be able to easily retrieve all personal information related to a user?
- Are the data points collected by the sensors considered personal information (and thus must be deleted when the user terminate its account)?
Thanks a lot!
> How should I design my services/infrastructure to be able to easily retrieve all personal information related to a user?
Details depend on implementation. Might be just a simple API/DB call or more. IIRC your DB data should be encrypted, RDS supports encryption at rest out of the box.
> Are the data points collected by the sensors considered personal information (and thus must be deleted when the user terminate its account)?
If, by retrieving them, a user can be identified then yes. Can you use an UUID and control the info on the AWS side?
A common pattern is to use an envelop encryption scheme (like KMS for instance) and instead of actually deleting the data, you delete the key. This way, the data cannot be decrypted and is considered lost/deleted.
Special care should be taken in order to design your DB in a way to support deletion and data retrieval.