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
To create a private endpoint named *myPrivateEndpoint* for an existing Azure Cache for Redis instance, run the following Azure CLI script. Replace the variable values with the details for your environment:
257
257
258
258
```azurecli-interactive
259
-
# Resource group where the Azure Cache for Redis and virtual network resources are located
260
-
ResourceGroupName="myResourceGroup"
261
-
262
-
# Subscription ID where the Azure Cache for Redis and virtual network resources are located
263
-
SubscriptionId="<your Azure subscription ID>"
264
-
265
-
# Name of the existing Azure Cache for Redis instance
266
-
redisCacheName="mycacheInstance"
267
-
268
-
# Name of the virtual network to create
269
-
VNetName="myVnet"
270
-
271
-
# Name of the subnet to create
272
-
SubnetName="mySubnet"
273
-
274
-
# Name of the private endpoint to create
275
-
PrivateEndpointName="myPrivateEndpoint"
276
-
277
-
# Name of the private endpoint connection to create
0 commit comments