Skip to content

Commit c951f55

Browse files
committed
more touchup
1 parent 7c49287 commit c951f55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/redis/scripts/create-manage-cache.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ az redisenterprise create --name $cache --resource-group $resourceGroup --locati
7575

7676
## Get details for an Azure Managed Redis cache
7777

78-
The following script uses the [az redisenterprise show](/cli/azure/redisenterprise#az-redisenterprise-show) and [az redisenterprise list-keys](/cli/azure/redisenterprise#az-redisenterprise-list-keys) commands to get and display name, hostname, ports, and keys details for an Azure Managed Redis cache.
78+
The following script uses the [az redisenterprise show](/cli/azure/redisenterprise#az-redisenterprise-show) and [az redisenterprise list-keys](/cli/azure/redisenterprise#az-redisenterprise-list-keys) commands to get and display cache name, hostname, ports, and keys details.
7979

8080
```azurecli
8181
# Get details of an Azure Managed Redis cache
@@ -100,7 +100,7 @@ echo "Secondary Key:" ${keys[1]}
100100

101101
## Clean up resources
102102

103-
The following script uses the [az group delete](/cli/azure/group) and [az redisenterprise delete](/cli/azure/redisenterprise#az-redisenterprise-delete) commands to delete an Azure Managed Redis cache, and then delete the resource group that contains all cache resources.
103+
The following script uses the [az group delete](/cli/azure/group) and [az redisenterprise delete](/cli/azure/redisenterprise#az-redisenterprise-delete) commands to delete a cache, and then delete the resource group that contains all cache resources.
104104

105105
```azurecli
106106
# Delete a redis cache
@@ -139,7 +139,7 @@ az redis create --name $cache --resource-group $resourceGroup --location "$locat
139139

140140
## Get details for an Azure Cache for Redis cache
141141

142-
The following script uses the [az redis show](/cli/azure/redis#az-redis-show) and [az redis list-keys](/cli/azure/redis#az-redis-list-keys) commands to get and display name, hostname, ports, and keys details for an Azure Cache for Redis cache.
142+
The following script uses the [az redis show](/cli/azure/redis#az-redis-show) and [az redis list-keys](/cli/azure/redis#az-redis-list-keys) commands to get and display name, hostname, ports, and keys details.
143143

144144
```azurecli
145145
@@ -164,7 +164,7 @@ echo "Secondary Key:" ${keys[1]}
164164

165165
## Clean up resources
166166

167-
The following script uses the [az group delete](/cli/azure/group) and [az redis delete](/cli/azure/redis#az-redis-delete) commands to delete an Azure Cache for Redis cache, and then delete the resource group that contains all cache resources.
167+
The following script uses the [az group delete](/cli/azure/group) and [az redis delete](/cli/azure/redis#az-redis-delete) commands to delete a cache, and then delete the resource group that contains all cache resources.
168168

169169
```azurecli
170170
# Delete an Azure Redis cache

0 commit comments

Comments
 (0)