How does it keep personal data safe? I had a look at “how it works” and “faqs” but they don’t answer how you keep stuff safe? It also gets uploaded to S3? I might have missed it, but I need to know exactly where our PII is stored (so not on a dev laptop), how do you know what to replace and what do you do with any info you do replace? Edit: To answer my own question, via transformers. But that seems to suggest each d…
We identify PII by introspecting your database, suggest fields to transform, and provide a JavaScript runtime for writing transformations.
Besides transforming data, you can reduce, and generate data. We are most excited about data-generation!
The configuration lives in your repository, and you can capture the snapshots in GitHub Actions. So you get "gitops workflow" for data.
A typical git-ops workflow:
1. Add a schema migration for a new column.
2. Add a JS function to generate new data for that column.
3. Add core to use the new column.
4. Later, once you have data, use the same function to transform the original value. (Or just keep generating it.)