Forrest logo
back to the az tool

az-redis:tldr:a5520

az-redis: Create a new Redis cache instance.
$ az redis create --location ${location} --name ${name} --resource-group ${resource_group} --sku ${select} --vm-size ${select1}
try on your machine

This command creates an Azure Redis Cache instance using the Azure CLI.

Here is the breakdown of the command and its arguments:

  • az redis create is the command used to create an Azure Redis Cache instance.
  • --location ${location} is the argument that specifies the location to create the cache. ${location} is a variable that should be replaced with the desired location, for example: --location westus.
  • --name ${name} is the argument that sets the name of the Redis Cache instance. ${name} is a variable that should be replaced with the desired name, for example: --name myredisinstance.
  • --resource-group ${resource_group} is the argument that specifies the resource group to which the Redis Cache instance will be added. ${resource_group} is a variable that should be replaced with the desired resource group name, for example: --resource-group myresourcegroup.
  • --sku ${select} is the argument that sets the pricing tier for the cache. ${select} is a variable that should be replaced with the desired pricing tier, for example: --sku Basic.
  • --vm-size ${select1} is the argument that defines the size of the virtual machine that will host the cache. ${select1} is a variable that should be replaced with the desired size, for example: --vm-size C1.

By running this command with the appropriate values for the variables, you can create an Azure Redis Cache instance with the specified configuration.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool