i have implemented a web application using 2 app engines:
standard for the frontend (done using flask)
flexible for the backend of the application, which implements some classifications on data loaded through the UI. FE and BE communicate through REST API.
I am now struggling on understading how to configure the network communication between two app engines
I would limit access to the front-end to only specific range of IPs.
If I change the "default action" to DENY, and then ALLOW internal addresses as described here, then:
communication from external (forbidden) addresses is CORRECTLY denied
BUT also the one between the two app engines!
Is there a way to have the two guys visible each other and not reachable from forbidden addresses?
Thanks