When I try to access my website deployed on Google Cloud I receive the following error page:
We're sorry...
... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now.
Here are the details of my setup:
- NextJS web application deployed to Cloud Run (traffic limited to Internal + Load Balancing)
- Strapi Content Management System deployed to Cloud Run (traffic limited to Internal + Load Balancing)
- I have a load balancer in front of each Cloud Run service and am using Google reserved IP's and managed SSL certs
- Identity Aware Proxy (IAM) is in front of both Load Balancers
- Each page visit makes an API call to the content management system to retrieve content (could this be causing the network to think "automated queries" are occurring?)
Troubleshooting:
- It doesn't appear to be related to the actual user visiting the website. This error message appears for all users, different devices, different IP addresses. It was working without issue before, this is the first time I've had this problem.
- No traffic is reaching the Cloud Run environments. If I switch their ingress to Allow All I am able to hit the Cloud Run URL directly and it works
- Deleting and recreating the load balancer doesn't resolve the issue
Based on this, there seems to be some network configuration/security occurring near the load balancer.
Any solutions or suggestions to continue debugging?