0

How to make public link and private endpoint link of an azure Redis service work simultaneously.

Can we keep both functionalities work simultaneously like outside users using the original public IP link and internal users using a private endpoint link to connect to an Azure Redis instance or azure storage account? I have this kind of scenario

devops-admin
  • 1,447
  • 1
  • 15
  • 26

1 Answers1

0

Here you have to enforce somehow the DNS resolution happening within your internal network so that any internal calls fetches the record created in the Private DNS Zone alongside the Private Endpoint.

Within your Virtual Network, you can for example change the DNS servers. Be careful, it might have severe impacts, as you might also need to re-specify how to reach other resources within Azure (since Azure DNS 168.63.129.16 is gone at that point). Be also aware about the precedence if you have several DNS servers at different levels.

Jul_DW
  • 1,036
  • 6
  • 20