Prevent public database access (AWS RDS with Vercel)
I currently have a database setup on AWS RDS that I connect to from my app hosted on Vercel. However from this article - https://vercel.com/guides/how-to-allowlist-deployment-ip-address Vercel suggests that I keep my security rules open for all connections (0.0.0.0). This seems like a great security risk even if my database is not that large yet. Do I have to decouple my backend and put it in an EC2 instance and abandon backend type safety for that reason alone?