0
0
llucycodes42
This code defines the AcceptanceTestEventHubNamespace resource in the $MyResource namespace. The name of the resource is "acceptanceTestEventHubNamespace" and the location is West US. The resource group for this namespace is also test.name. The resource has a basic SKU and can hold up to 2 instances.
Shortcut: tf_azurerm_eventhub_namespace
resource "azurerm_eventhub_namespace" "${MyResource}" {
name = "acceptanceTestEventHubNamespace"
location = "West US"
resource_group_name = "\${azurerm_resource_group.test.name}"
sku = "Basic"
capacity = 2
}