How to provide read only access #5872
-
Hello, We need to provide read only access to our Edge DB for some other teams. Unfortunately I can't come up with a way to do with the current implementation. My first thought was to use the new psql protocol support but because it is on the same port as the binary protocol I cannot only allow access for it in the security group (we are running everything on AWS and Aurora). Also because the roles only allow superuser roles, I can't lock it down based on role either. Is it possible to change the port so that the binary protocol and the postgres protocol are on different ports, or is there a better way to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can use access policies for this use case.
And then the other part is to authenticate other team members so that they have the adequate user type that can only read. |
Beta Was this translation helpful? Give feedback.
-
Access Polices work, but require that all the other users need to be updated. I also found that placing |
Beta Was this translation helpful? Give feedback.
You can use access policies for this use case.
And then the other part is to authenticate other team members so that they have the adequate user type that can only read.