skip to Main Content

Azure provides a feature to many PaaS services called as Private endpoint. I know it is not available for all services but is it available for Azure Redis?

3

Answers


  1. No it is not available for Azure Redis Cache. You can see the list of services made generally available here

    Azure Private Link is now generally available (GA) for the below services:

    • Azure Storage
    • Azure Data Lake Storage Gen 2
    • Azure SQL Database
    • Azure Cosmos DB
    • Azure Synapse Analytics (SQL Data Warehouse)
    • Azure Key Vault
    • Azure Database for MySQL
    • Azure Database for PostgreSQL
    • Azure Database for MariaDB
    • Azure Kubernetes Service -> Kubernetes API

    In addition, Private Link is now available in preview for the following services:

    • App Service
    • Azure Cognitive Search
    • Event Hub
    • Service Bus
    • Azure Relay
    • Azure Backup
    • Azure Container Registry
    • Event Grid -> Topics
    • Event Grid -> Domains
    Login or Signup to reply.
  2. Azure Redis actually is in "Private Preview" for this feature, meaning that we are letting a subset of customers have access to the feature to kick the tires, give us feedback, verify quality, etc. Public preview is expected late this summer or early fall. If you are interested in trying out the private preview, please file a support ticket with customer support and we can give you access.

    Login or Signup to reply.
  3. Azure Private Link enables you to access Azure PaaS Services and Azure-hosted customer-owned/partner services over a private endpoint in your virtual network. Azure Private Link for Azure Cache for Redis provides private connectivity from a virtual network to your cache instance. This means that you can now use Azure Private Link to connect to an Azure Cache for Redis instance from your virtual network via a private endpoint, which is assigned a private IP address in a subnet within the virtual network. It simplifies the network architecture and secures the connection between endpoints in Azure by eliminating data exposure to the public internet. Private Link carries traffic privately, reducing your exposure to threats and helps you meet compliance standards.

    Do check out this tutorial https://developer.redislabs.com/create/azure/terraform-private-endpoint

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search