'Azure Container Registry unable to resolve Private Endpoints connected in same VNET

I have an Azure Container Instance in my VNET. However, from the ACI I am trying to resolve my Azure Storage Account which is enabled with Private Endpoints in the same VNET but not able to resolve. What could be the issue?



Solution 1:[1]

You can use this command to get the Private IP address of Private endpoint of storage account.

nslookup <storage-account-name>.blob.core.windows.net

Replace <storage-account-name> with the name of the storage.

Note : I have configure the privaate endpoint while creating the storage account itself.

enter image description here

enter image description here

enter image description here

A private IP address of 10.0.0.5 is returned for the storage account name. This address is in the subnet of the virtual network you created previously.

Refernce : https://docs.microsoft.com/en-us/azure/private-link/tutorial-private-endpoint-storage-portal#test-connectivity-to-private-endpoint

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1