There is an issue of getting real user request IP address inside web application that is running on Cloud Run service. By some reason the web application obtains the same IP address for all users requests - 169.254.8.129 . I'm assuming it's a load balancer in front of cloud run service overrides requests IPs with his own. I have double checked already this issue with different apps on Flask, FastApi and ASP.NET Core in Cloud Run. All apps returning the same results and all having the same issue.
But, when I am checking those apps on VM and everything works fine there.
How can I get the user's IP-Address in my Cloud-Run Flask app?
I have found some part of the answer, but still cannot handle the same for FastApi.