I need to deploy a Django app using PostgreSQL as the database on Google Cloud Platform. Since the app is only for my personal use, it has a minimal server load.
I tried a solution by deploying my app on an F1 App Engine standard environment(us-central1 region) and ran a PostgreSQL instance on an f1-small compute engine(us-central1 region). Both these are provided in GCP free tier in the us-central1 region. But it seems a VPC serverless connector is needed for app engine standard to access Postgres on compute engine on internal IP address.(which is billed as 2 e-2 micro instances).
Is there a better way of deploying it on GCP or connecting App engine standard with compute engine private IP, which incurs lesser cost?