1

Do I need to set up multiple private links with different private endpoints to connect from my Azure VM to say an Azure Storage account or Azure SQL DB or only one private link will do and I can use that private link with multiple Azure PaaS Services that are serviced by Private Link?

Pallab
  • 1,915
  • 2
  • 19
  • 46

1 Answers1

1

You have to create different private endpoint connections for different Azure PaaS Services. Also, private endpoints must be deployed in the same region as the virtual network.

Here are some key details about private endpoints:

enter image description here

Reference: https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-overview

Nancy
  • 26,865
  • 3
  • 18
  • 34
  • Further,I think even for multiple instances of the SAME service eg. accessing 2 different storage accounts from single vnet(concept-any subnet in vnet can make use of private endpoint UNLIKE service endpoints),separate Private Endpoints would be needed. This is NOT the case with service endpoints, where same service endpoint in subnet is used for multiple INSTANCES of SAME service. – Aditya Garg Oct 01 '22 at 20:57