You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Private DNS zone for `privatelink` A records](https://www.terraform.io/docs/providers/azurerm/r/private_dns_zone.html)
16
16
@@ -74,7 +74,7 @@ module "redis" {
74
74
}
75
75
76
76
# Creating Private Endpoint requires, VNet name and address prefix to create a subnet
77
-
# By default this will create a `privatelink.mysql.database.azure.com` DNS zone.
77
+
# By default this will create a `privatelink.redis.cache.windows.net` DNS zone.
78
78
# To use existing private DNS zone specify `existing_private_dns_zone` with valid zone name
79
79
# Private endpoints doesn't work If using `subnet_id` to create redis inside a specified VNet.
80
80
enable_private_endpoint = true
@@ -117,15 +117,15 @@ module "redis" {
117
117
118
118
### Zones
119
119
120
-
### Private Link to Azure Database for MySQL
120
+
### Private Link for Azure Cache for Redis
121
121
122
122
Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. Private Endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet.
123
123
124
124
With Private Link, Microsoft offering the ability to associate a logical server to a specific private IP address (also known as private endpoint) within the VNet. Clients can connect to the Private endpoint from the same VNet, peered VNet in same region, or via VNet-to-VNet connection across regions. Additionally, clients can connect from on-premises using ExpressRoute, private peering, or VPN tunneling.
125
125
126
126
By default, this feature not enabled on this module. To create private link with private endpoints set the variable `enable_private_endpoint` to `true` and provide `virtual_network_name`, `private_subnet_address_prefix` with a valid values. You can also use the existing private DNS zone to create DNS records. To use this feature, set the `existing_private_dns_zone` with a valid existing private DNS zone name.
127
127
128
-
For more details: [Private Link for Azure Database for MySQL](https://docs.microsoft.com/en-us/azure/mysql/concepts-data-access-security-private-link)
128
+
For more details: [Azure Cache for Redis with Azure Private Link](https://docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-private-link)
129
129
130
130
> **[IMPORTANT]**
131
131
> There is a `publicNetworkAccess` flag which is `Disabled` by default. This flag is meant to allow you to optionally allow both public and private endpoint access to the cache if it is set to `Enabled`. If set to `Disabled`, it will only allow private endpoint access. You can set the value to `Disabled` or `Enabled`.
0 commit comments