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.

24 lines
948 B

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