Hello @Krysynskyi Andrii MTAC-IRL ,
The issue is that your App Service is having trouble resolving private endpoints and connecting over the network. Since this setup was working before, here are a few things you might want to check:
- First, make sure the VNet peering and routing are still intact. The changes in the network configuration can impact connectivity.
- Try running this command from Kudu to check if the private DNS resolution is working:
nslookup <your-private-endpoint>.privatelink.<service>.azure.com 168.63.129.16
If that fails, it could mean that your Private DNS zone is not correctly linked to both VNets.
- Also, check if there are any NSGs, UDRs, or firewalls that might be blocking traffic from the App Service subnet to the private endpoint.
- You can do a direct connectivity test using:
curl -v
http://<private-endpoint-ip>
If this works, then it's likely a DNS issue. If it doesn't, then it might be a network-related problem.
- A simple restart of the App Service can help. If the issue persists, you could try removing and re-adding the VNet integration.
- Finally, it might be worth checking Azure Service Health to see if there are any ongoing issues affecting App Service, VNet integration, or Private DNS.
Hope this helps! Let me know if you need any further details.
Please remember to "Accept Answer" if the solution has helped, so that others in the community facing similar issues can easily find the solution.