$ sudo apt-get install -y postgresql-client
$ PGPASSWORD=user psql --username=user --host=10.7.2.3 --port=5432
user=# \timing
user=# SELECT count(*) FROM pg_tables;
count
-------
81
(1 row)
Time: 8.771 ms
$ apk add postgresql-client
$ PGPASSWORD=user psql --username=user --host=10.7.2.3 --port=5432
user=# \timing
user=# SELECT count(*) FROM pg_tables;
count
-------
81
(1 row)
Time: 10.055 ms
It shouldn't be, the normal latency in the same zone is about 80 microseconds, you can find the information about latencies in this link.
Now, with the information provided it is very hard to troubleshoot this issue, I would recommend you to create a support case through the Support Hub page, someone from GCP will follow up.