Azure Service Bus
Overview
Real-life Use Cases
Terraform Example
resource "azurerm_servicebus_namespace" "main" {
name = "myservicebusns"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
sku = "Standard"
}Bicep Example
resource sbNamespace 'Microsoft.ServiceBus/namespaces@2022-10-01-preview' = {
name: 'myservicebusns'
location: resourceGroup().location
sku: {
name: 'Standard'
tier: 'Standard'
}
}Azure CLI Example
Best Practices
Common Pitfalls
Last updated