» azurerm_eventhub_namespace_authorization_rule

Manages an Authorization Rule for an Event Hub Namespace.

» Example Usage

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

resource "azurerm_eventhub_namespace" "test" {
  name                = "acceptanceTestEventHubNamespace"
  location            = "${azurerm_resource_group.test.location}"
  resource_group_name = "${azurerm_resource_group.test.name}"
  sku                 = "Basic"
  capacity            = 2

  tags = {
    environment = "Production"
  }
}

resource "azurerm_eventhub_namespace_authorization_rule" "test" {
  name                = "navi"
  namespace_name      = "${azurerm_eventhub_namespace.test.name}"
  resource_group_name = "${azurerm_resource_group.test.name}"

  listen = true
  send   = false
  manage = false
}

» Argument Reference

The following arguments are supported:

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

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

  • resource_group_name - (Required) The name of the resource group in which the EventHub Namespace exists. Changing this forces a new resource to be created.

  • listen - (Optional) Grants listen access to this this Authorization Rule. Defaults to false.

  • send - (Optional) Grants send access to this this Authorization Rule. Defaults to false.

  • manage - (Optional) Grants manage access to this this Authorization Rule. When this property is true - both listen and send must be too. Defaults to false.

» Attributes Reference

The following attributes are exported:

» Import

EventHubs can be imported using the resource id, e.g.

terraform import azurerm_eventhub_namespace_authorization_rule.rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventHub/namespaces/namespace1/authorizationRules/rule1