I'm trying Kubernetes in a Azure environment (AKS).
I have an nginx ingress deployed and exposed to internet through a public ip and an azure load balancer. It is used to expose public/front services.
My issue is I would like to deploy 'back' services, not exposed to internet. My first guess would be to deploy a second ingress and expose it on the internal load balancer, am I right ?
But what if my front services needs to consume the back services, can I consume it over the second ingress (to use nginx configuration, ssl offload, etc) but not do a round trip to the internal load balancer. What will be the DNS configuration in that case?