Live data from Hacker News

PostgreSQL Anonymizer

postgresql-anonymizer.readthedocs.io

1–10 of 54 posts

Re: PostgreSQL Anonymizer

#4
post #2

Just be careful that you don't anonymize your production data.

The principle of the software seems to be that the original data is never altered. It is a postgres extension that "masks" the data for certain postgres users. You can always connect as the root user and see everything when you need to.

Re: PostgreSQL Anonymizer

#7
post #5

This is a fantastic idea. Now how to get it on RDS…

Assuming if it's for a support team or internal users with a lower SLA, I wonder if it's possible to have a small self-hosted PostgreSQL server that basically acts as a shim by holding a foreign-data wrapper connection to the actual RDS instance

Re: PostgreSQL Anonymizer

#8
post #7
post #5

This is a fantastic idea. Now how to get it on RDS…

Assuming if it's for a support team or internal users with a lower SLA, I wonder if it's possible to have a small self-hosted PostgreSQL server that basically acts as a shim by holding a foreign-data wrapper connection to the actual RDS instance

[deleted]

Re: PostgreSQL Anonymizer

#10
this seems great. I wonder tho, how do you ensure new columns are masked by default? It seems a safer alternative would be to start with all columns being statically masked and only unveil them selectively.

I guess you can add some CI steps when modifying the db to ensure a give column is allowed or masked, but still, would be nice if this was defaulted the other way around.

Post reply on HN