azure resource manager servicebus provider?

前端 未结 2 1696
孤街浪徒
孤街浪徒 2021-01-18 05:02

Is there such a thing as a ServiceBus provider? As part of my application I would like to include a SB namespace, topic and subscriptions. Is the expectation that you deploy

2条回答
  •  囚心锁ツ
    2021-01-18 05:38

    There is a Service Bus Provider now. Sample template:

        {
          "apiVersion": "2014-09-01",
          "name": "[parameters('namespace')]",
          "type": "Microsoft.ServiceBus/namespaces",
          "location": "[parameters('resourceLacation')]",
          "properties": {
            "messagingSku": "1", //basic tier
            "enabled": true,
            "status": "Active",
            "namespaceType": "Messaging",
            "eventHubEnabled": true,                           
            }         
         }
    

提交回复
热议问题