{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { "type": "string", "defaultValue": "[concat('sbnamespace', uniqueString(resourceGroup().id))]", "metadata": { "description": "The name of the Service Bus Namespace" } }, "location": { "type": "string", "defaultValue": "westeurope", "metadata": { "description": "The location for all resources" } } }, "resources": [ { "type": "Microsoft.ServiceBus/namespaces", "apiVersion": "2021-11-01", "name": "[parameters('serviceBusNamespaceName')]", "location": "[parameters('location')]", "sku": { "name": "Standard", "tier": "Standard" }, "properties": {} } ] }