Skip to main content

Azure Private Link advantages over Azure Service Endpoint

People often ask what they should use to secure the connection between Azure PaaS services and VNETs. Today's article talks about the key differences between Azure Private Link and Azure Service Endpoints and when you should use each of them.

What is?

Azure Service Endpoint provides a direct and secure connection to Azure PaaS services over the Azure backbone network. Even if the traffic leaves your VNET and hits the public endpoint of the Azure PaaS service, it goes over the Azure backbone.

Azure Private Link enables you to have a private IP inside your VNET used to hit the endpoint of your Azure PaaS service. The assigned private IP is part of your VNET and ensures that all traffic will stay within your VNET.

What about Azure Private Endpoint? It is part of Azure Private Link, enabling you to configure the private IP address and the peering over VPN or VNET. 

If you want to expose your own service over  Private Link, you can do this by using Azure Private Link Service, but you need a Standard Load Balancer (ILB/PLB) to create the Private Link. It's an excellent service if you want to share your service with other consumers in secure manure. 

Sometimes Azure resources have support only for Private Link or Service Endpoint, not for both. You should not design a solution that uses only one of them.


Concerns

The section covers the most important infrastructure and security concerns that we should consider when we decide what approach we would like to use.

Connectivity

Private Link - Azure PaaS service receives a private IP from your networks used for communication with your VNET

Service Endpoint - Azure PaaS public IP it is still used, the trafic between VNET and the public IP of Azure PaaS service goes over Azure backbokne network

OnPrem Connectivity

Private Link - ExpressRoute and VPN tunnels provide support to extend the private Azure PaaS connectivity to the OnPrem networks

Service Endpoint - No native support for OnPrem integrations. Build mainly for Azure VNETs.  

Cost

Private Link - The cost is based on inboud, outbound traffic and no. of endpoints. Depending on the total traffic, the total cost can grow easilty

Service Endpoint - No additional cost (free of use)

Data protection

Private Link - Build-in data protection

Service Endpoint - Needs to be integrated with a Network Virtual Appliance/Firewall of exfiltration protection is required

Availability

Private Link - The no. of Azure PaaS services supported by Private Link is high and is grow each month - full list of Azure PaaS Services available here.

Service Endpoint - Well supported by core Azure PaaS Services - full list of Azure PaaS Services available here.

UDRs and NSGs 

Private Link - The traffic can bypass the Private Endpoint of you use UDRs and NSGs. Special configuration might be required

Service Endpoint - No specific overlaps exists

Complexity

Private Link - Involves updates to DNS (Azure Private DNS) and where the service will attach to your VNET.

Service Endpoint - Easy to configure and setup from Azure Portal

Cross-region support

Private Link - Has full support for access resources across regions and across Azure AD tenants

Service Endpoint - No native support for cross-region support


Conclusion

When security and data restrictions are your main concerns, Azure Private Link should be your first choice. It is superior compared to Azure Service Endpoint, even if the setup complexity is higher. 

Comments

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(...

How to audit an Azure Cosmos DB

In this post, we will talk about how we can audit an Azure Cosmos DB database. Before jumping into the problem let us define the business requirement: As an Administrator I want to be able to audit all changes that were done to specific collection inside my Azure Cosmos DB. The requirement is simple, but can be a little tricky to implement fully. First of all when you are using Azure Cosmos DB or any other storage solution there are 99% odds that you’ll have more than one system that writes data to it. This means that you have or not have control on the systems that are doing any create/update/delete operations. Solution 1: Diagnostic Logs Cosmos DB allows us activate diagnostics logs and stream the output a storage account for achieving to other systems like Event Hub or Log Analytics. This would allow us to have information related to who, when, what, response code and how the access operation to our Cosmos DB was done. Beside this there is a field that specifies what was th...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...