I have two GAE services:
I want the worker service to have an ingress setting of "Allow internal traffic only" to provide additional security.
When I set internal only, this code from the default service stops working:
url = 'https://worker-dot-MYPROJECT.uc.r.appspot.com' rsp = requests.post(url, data)
How do I do a post from the default service to the worker service with an internal only ingress setting?
Hi @Jeff5,
Welcome to Google Cloud Community!
Configuring your ingress setting to "allow internal traffic only" and communication between services is possible however communication between services in different projects is not.
You may check the following documentation on each environment for additional information:
Hope this helps.