terraform/website/source/docs/providers/azurerm/r/servicebus_namespace.html.m...

1.4 KiB

layout page_title sidebar_current description
azurerm Azure Resource Manager: azurerm_servicebus_namespace docs-azurerm-resource-servicebus-namespace Create a ServiceBus Namespace.

azurerm_servicebus_namespace

Create a ServiceBus Namespace.

Example Usage

resource "azurerm_resource_group" "test" {
    name = "resourceGroup1"
    location = "West US"
}

resource "azurerm_servicebus_namespace" "test" {
    name = "acceptanceTestServiceBusNamespace"
    location = "West US"
    resource_group_name = "${azurerm_resource_group.test.name}"
    sku = "basic"

    tags {
        environment = "Production"
    }
}

Argument Reference

The following arguments are supported:

  • name - (Required) Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.

  • resource_group_name - (Required) The name of the resource group in which to create the namespace.

  • location - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

  • sku - (Required) Defines which tier to use. Options are basic, standard or premium.

  • capacity - (Optional) Specifies the capacity of a premium namespace. Can be 1, 2 or 4

  • tags - (Optional) A mapping of tags to assign to the resource.

Attributes Reference

The following attributes are exported:

  • id - The ServiceBus Namespace ID.