Azure Resource Manager service provider?

Is there such a thing as a ServiceBus provider? As part of my application, I would like to include the namespace, themes, and subscriptions for SB. Are you expected to deploy the website using ARM and use the service interface to write other supporting functions?

+7
azure azure-resource-manager azureservicebus
source share
2 answers

There is currently a service bus provider. Template example:

{ "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, } } 
+7
source share

There is no service bus provider yet. The only way to create / manage the Service Bus from the client machine is through PowerShell or through native code using either the Azure SDK or the REST Management API .

+3
source share

All Articles