Skip to content

Files

Latest commit

5bcdf7c · Nov 10, 2017

History

History
146 lines (116 loc) · 6.18 KB

service-bus-resource-manager-namespace.md

File metadata and controls

146 lines (116 loc) · 6.18 KB
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 Service Bus namespace using an Azure Resource Manager template | Microsoft Docs
Use Azure Resource Manager template to create a Service Bus namespace
service-bus-messaging
.net
sethmanheim
timlt
dc0d6482-6344-4cef-8644-d4573639f5e4
service-bus-messaging
tbd
article
dotnet
na
08/07/2017
sethm;shvija

Create a Service Bus namespace using an Azure Resource Manager template

This article describes how to use an Azure Resource Manager template that creates a Service Bus namespace of type Messaging with a Standard SKU. The article also defines the parameters that are specified for the execution of the deployment. You can use this template for your own deployments, or customize it to meet your requirements.

For more information about creating templates, see Authoring Azure Resource Manager templates.

For the complete template, see the Service Bus namespace template on GitHub.

Note

The following Azure Resource Manager templates are available for download and deployment.

To check for the latest templates, visit the Azure Quickstart Templates gallery and search for Service Bus.

What will you deploy?

With this template, you deploy a Service Bus namespace with a Standard or Premium SKU.

To run the deployment automatically, click the following button:

Deploy to Azure

Parameters

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 vary based on the project you are deploying or based on the environment you are deploying to. Do not define parameters for values that always stay the same. Each parameter value is used in the template to define the resources that are deployed.

This template defines the following parameters:

serviceBusNamespaceName

The name of the Service Bus namespace to create.

"serviceBusNamespaceName": {
"type": "string",
"metadata": { 
    "description": "Name of the Service Bus namespace" 
    }
}

serviceBusSKU

The name of the Service Bus SKU to create.

"serviceBusSku": { 
    "type": "string", 
    "allowedValues": [ 
        "Standard",
        "Premium" 
    ], 
    "defaultValue": "Standard", 
    "metadata": { 
        "description": "The messaging tier for service Bus namespace" 
    } 

The template defines the values that are permitted for this parameter (Standard or Premium). If no value is specified, the resource manager assigns a default value (Standard).

For more information about Service Bus pricing, see Service Bus pricing and billing.

serviceBusApiVersion

The Service Bus API version of the template.

"serviceBusApiVersion": { 
       "type": "string", 
       "defaultValue": "2017-04-01", 
       "metadata": { 
           "description": "Service Bus ApiVersion used by the template" 
       } 

Resources to deploy

Service Bus namespace

Creates a standard Service Bus namespace of type Messaging.

"resources": [
    {
        "apiVersion": "[parameters('serviceBusApiVersion')]",
        "name": "[parameters('serviceBusNamespaceName')]",
        "type": "Microsoft.ServiceBus/Namespaces",
        "location": "[variables('location')]",
        "kind": "Messaging",
        "sku": {
            "name": "StandardSku",
            "tier": "Standard"
        },
        "properties": {
        }
    }
]

Commands to run deployment

[!INCLUDE app-service-deploy-commands]

PowerShell

New-AzureRmResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateFile https://raw.githubusercontent.com/azure/azure-quickstart-templates/master/101-servicebus-create-namespace/azuredeploy.json

Azure CLI

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/101-servicebus-create-namespace/azuredeploy.json

Next steps

Now that you've created and deployed resources using Azure Resource Manager, learn how to manage these resources by reading these articles: