Skip to content

Connect Private Endpoints

Private Endpoints allow secure access to Azure Services over a private IP.

Step Task Status
1 Create Private Endpoint for Service. [ ]
2 Configure Private DNS Zone for Resource. [ ]
3 Link DNS Zone to Virtual Network. [ ]
4 Verify local DNS resolution. [ ]
Validation Method Expected Result
FQDN lookup nslookup <service-fqdn> Private endpoint IP returned.
Route check Effective routes on source NIC Prefix points to VNet path.
Port test Test-NetConnection -Port 443 TCP connection succeeds.

mermaid graph LR VNet[Consumer VNet] --> PE[Private Endpoint] PE -- Private Link --> Service[Azure PaaS Service] VNet -- Query --> DNS[Private DNS Zone]

Warning

Test DNS resolution before disabling public access. If resolution fails, your applications will lose connectivity.

See Also

Sources