Private Endpoints

Azure Private Endpoint is a network interface that connects you privately and securely to a PaaS service (like Azure Storage, Azure SQL Database, or Azure Key Vault) that is powered by Azure Virtual Network and Azure Private Link. It uses a private IP address from your virtual network, effectively bringing the service into your virtual network.

Key Benefit: Private Endpoint enables you to access PaaS services without exposing them to the public internet. This significantly enhances the security posture of your applications.

What is a Private Endpoint?

A Private Endpoint is a resource that provides a unique private IP address to an Azure service. This IP address is assigned from your virtual network's address space. Traffic between your virtual network and the service travels through the virtual network and a private Microsoft backbone network, eliminating exposure to the public internet.

How it Works

  1. Resource Deployment: You deploy a Private Endpoint in your virtual network.
  2. Service Association: The Private Endpoint is associated with a specific Azure service instance (e.g., a particular Azure SQL Database).
  3. IP Allocation: A private IP address is allocated to the Private Endpoint from your virtual network's subnet.
  4. DNS Configuration: A DNS record is created in your virtual network's DNS zone, mapping the service's fully qualified domain name (FQDN) to the private IP address of the Private Endpoint.
  5. Secure Connectivity: When a client within your virtual network attempts to connect to the service using its FQDN, the DNS resolution directs the traffic to the private IP address of the Private Endpoint. This traffic then routes securely over the Microsoft backbone network.
Diagram showing Private Endpoint architecture

Benefits of Using Private Endpoints

Key Concepts

Use Cases

Prerequisites

Before creating a Private Endpoint, ensure you have:

Note: When you create a Private Endpoint, it's associated with a specific resource (e.g., a Storage Account). You cannot create a Private Endpoint for an entire service type (like all storage accounts).

Configuration Steps

The general steps to configure a Private Endpoint involve:

  1. Navigating to the Azure portal and searching for "Private Endpoint".
  2. Specifying subscription, resource group, region, and name.
  3. Selecting the virtual network and subnet.
  4. Choosing the target Azure service and the specific resource instance.
  5. Configuring Private DNS integration.

For detailed guidance, refer to the specific configuration pages: