FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

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:

Attributes Reference

The following attributes are exported:

The following attributes are exported only if there is an authorization rule named RootManageSharedAccessKey which is created automatically by Azure.


See the source of this document at Terraform.io