I’m developing an ASP.NET Core web application that uploads some files to a cloud storage bucket, the issue is: when the application is running as a cloud run service it can’t connect to the bucket, it’s always a HttpClient timeout error and the file is very small just for testing purposes, but when I run the application locally with my work account signed in by the google sdk it work’s fine.
The cloud run service’s account have cloud storage object admin permissions. the authentication is by Application Default Credentials (ADC).
I would be glad if anyone could help me