Skip to content

Commit d13adb5

Browse files
committed
documentation for version 1.0
1 parent 2838997 commit d13adb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Azure Cache for Redis provides an in-memory data store based on the Redis softwa
1010
* [Redis Cache Cluser](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/redis_cache#shard_count)
1111
* [Redis Cache Virtual Network Support](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/redis_cache#subnet_id)
1212
* [Redis Cache Data Persistence](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/redis_cache#rdb_backup_enabled)
13-
* [Redis Monitoring Diagnostics](https://docs.microsoft.com/en-us/azure/azure-sql/database/metrics-diagnostic-telemetry-logging-streaming-export-configure?tabs=azure-portal)
13+
* [Monitor Azure Cache for Redis](https://docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-how-to-monitor)
1414
* [Private Endpoints](https://www.terraform.io/docs/providers/azurerm/r/private_endpoint.html)
1515
* [Private DNS zone for `privatelink` A records](https://www.terraform.io/docs/providers/azurerm/r/private_dns_zone.html)
1616

@@ -74,7 +74,7 @@ module "redis" {
7474
}
7575
7676
# 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.
7878
# To use existing private DNS zone specify `existing_private_dns_zone` with valid zone name
7979
# Private endpoints doesn't work If using `subnet_id` to create redis inside a specified VNet.
8080
enable_private_endpoint = true
@@ -117,15 +117,15 @@ module "redis" {
117117

118118
### Zones
119119

120-
### Private Link to Azure Database for MySQL
120+
### Private Link for Azure Cache for Redis
121121

122122
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.
123123

124124
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.
125125

126126
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.
127127

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)
129129

130130
> **[IMPORTANT]**
131131
> 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

Comments
 (0)