Skip to content

Commit e53bd33

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs-pr#546982
In line number 15 added punctuation at end. Updated line number 102. From "name": "Standard", To "name": "Standard" Updated line number 112. From "path": "[parameters('serviceBusTopicName')]", To "path": "[parameters('serviceBusTopicName')]" Updated line number 119. From "[parameters('serviceBusTopicName')]" To "[concat('Microsoft.ServiceBus/namespaces/', parameters('serviceBusNamespaceName'), '/Topics/', parameters('serviceBusTopicName'))]"
1 parent f918d92 commit e53bd33

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

articles/service-bus-messaging/service-bus-resource-manager-namespace-topic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.devlang: azurecli
1212

1313
# Quickstart: Create a Service Bus namespace with topic and subscription using an Azure Resource Manager template
1414

15-
This article shows how to use an Azure Resource Manager template that creates a Service Bus namespace and a topic and subscription 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
15+
This article shows how to use an Azure Resource Manager template that creates a Service Bus namespace and a topic and subscription 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.
1616

1717
For more information about creating templates, see [Authoring Azure Resource Manager templates][Authoring Azure Resource Manager templates].
1818

@@ -99,7 +99,7 @@ Creates a standard Service Bus namespace of type **Messaging**, with topic and s
9999
"location": "[variables('location')]",
100100
"kind": "Messaging",
101101
"sku": {
102-
"name": "Standard",
102+
"name": "Standard"
103103
},
104104
"resources": [{
105105
"apiVersion": "[variables('sbVersion')]",
@@ -109,14 +109,14 @@ Creates a standard Service Bus namespace of type **Messaging**, with topic and s
109109
"[concat('Microsoft.ServiceBus/namespaces/', parameters('serviceBusNamespaceName'))]"
110110
],
111111
"properties": {
112-
"path": "[parameters('serviceBusTopicName')]",
112+
"path": "[parameters('serviceBusTopicName')]"
113113
},
114114
"resources": [{
115115
"apiVersion": "[variables('sbVersion')]",
116116
"name": "[parameters('serviceBusSubscriptionName')]",
117117
"type": "Subscriptions",
118118
"dependsOn": [
119-
"[parameters('serviceBusTopicName')]"
119+
"[concat('Microsoft.ServiceBus/namespaces/', parameters('serviceBusNamespaceName'), '/Topics/', parameters('serviceBusTopicName'))]"
120120
],
121121
"properties": {}
122122
}]

0 commit comments

Comments
 (0)