You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
905 B

7 years ago
  1. # Deploying Redis Cache
  2. The ARM template `redisdeploy.json` and its parameter file (`redisdeploy.parameters.json`) are used to deploy following resources:
  3. 1. One Redis Cache
  4. ## Editing sbusdeploy.parameters.json file
  5. You can edit the `redisdeploy.parameters.parameters.json` file to set your values, but is not needed. The only parameter than can
  6. be set is:
  7. 1. `namespaceprefix` is a string that is used to create the Redis namespace. ARM script creates unique values by appending a unique string to this parameter value, so you can leave the default value.
  8. ## Deploy the template
  9. Once parameter file is edited you can deploy it using [create-resources script](../readme.md).
  10. i. e. if you are in windows, to deploy a Redis cache in a new Azure Resource Group located in westus, go to `deploy\az` folder and type:
  11. ```
  12. create-resources.cmd redis\redisdeploy newResourceGroup -c westus
  13. ```