title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create Azure Service Bus namespace and queue using Azure Resource Manager template | Microsoft Docs |
Create a Service Bus namespace and a queue using Azure Resource Manager template |
service-bus-messaging |
.net |
sethmanheim |
timlt |
a6bfb5fd-7b98-4588-8aa1-9d5f91b599b6 |
service-bus-messaging |
tbd |
article |
dotnet |
na |
11/10/2017 |
sethm;shvija |
This article shows how to use an Azure Resource Manager template that creates a Service Bus namespace and a queue within that namespace. The article explains how to specify which resources are deployed and how to define parameters that are specified when the deployment is executed. You can use this template for your own deployments, or customize it to meet your requirements.
For more information about creating templates, please see Authoring Azure Resource Manager templates.
For the complete template, see the Service Bus namespace and queue template on GitHub.
Note
The following Azure Resource Manager templates are available for download and deployment.
- Create a Service Bus namespace with queue and authorization rule
- Create a Service Bus namespace with topic and subscription
- Create a Service Bus namespace
- Create a Service Bus namespace with topic, subscription, and rule
To check for the latest templates, visit the Azure Quickstart Templates gallery and search for Service Bus.
With this template, you deploy a Service Bus namespace with a queue.
Service Bus queues offer First In, First Out (FIFO) message delivery to one or more competing consumers.
To run the deployment automatically, click the following button:
With Azure Resource Manager, you define parameters for values you want to specify when the template is deployed. The template includes a section called Parameters
that contains all of the parameter values. You should define a parameter for those values that will vary based on the project you are deploying or based on the environment you are deploying to. Do not define parameters for values that will always stay the same. Each parameter value is used in the template to define the resources that are deployed.
The template defines the following parameters.
The name of the Service Bus namespace to create.
"serviceBusNamespaceName": {
"type": "string",
"metadata": {
"description": "Name of the Service Bus namespace"
}
}
The name of the queue created in the Service Bus namespace.
"serviceBusQueueName": {
"type": "string"
}
The Service Bus API version of the template.
"serviceBusApiVersion": {
"type": "string",
"defaultValue": "2017-04-01",
"metadata": {
"description": "Service Bus ApiVersion used by the template"
}
Creates a standard Service Bus namespace of type Messaging, with a queue.
"resources ": [{
"apiVersion": "[variables('sbVersion')]",
"name": "[parameters('serviceBusNamespaceName')]",
"type": "Microsoft.ServiceBus/Namespaces",
"location": "[variables('location')]",
"kind": "Messaging",
"sku": {
"name": "StandardSku",
"tier": "Standard"
},
"resources": [{
"apiVersion": "[variables('sbVersion')]",
"name": "[parameters('serviceBusQueueName')]",
"type": "Queues",
"dependsOn": [
"[concat('Microsoft.ServiceBus/namespaces/', parameters('serviceBusNamespaceName'))]"
],
"properties": {
"path": "[parameters('serviceBusQueueName')]",
}
}]
}]
[!INCLUDE app-service-deploy-commands]
New-AzureRmResourceGroupDeployment -ResourceGroupName \<resource-group-name\> -TemplateFile <https://raw.githubusercontent.com/azure/azure-quickstart-templates/master/201-servicebus-create-queue/azuredeploy.json>
azure config mode arm
azure group deployment create \<my-resource-group\> \<my-deployment-name\> --template-uri <https://raw.githubusercontent.com/azure/azure-quickstart-templates/master/201-servicebus-create-queue/azuredeploy.json>
Now that you've created and deployed resources using Azure Resource Manager, learn how to manage these resources by viewing these articles: