Data Export Rule - Azurerm

Hi All,

My query is related to azurerm_log_analytics_data_export_rule. I have created Log Analytics Workspace and Eventhub in portal followed all the steps in below link.
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/log_analytics_data_export_rule

Both Terraform Plan and Apply are successful. But the expected tables are not created in Eventhub. For example (as per above link) “Heartbeat” table is not created Eventhub after export_rule created.

Will be helpful if I get some info on this rule.

My code below. After applying successfully, the tables are not created in Event Hub from LAW. Tables in export rule resource (given below) for example only. I am looking to see any of the tables from LAW to be created in EH as a result.

provider "azurerm" {
  features{}
}

resource "azurerm_resource_group" "data_export_resource_group" {
  name     = "test_data_export_rg"
  location = "centralus"
}

resource "azurerm_log_analytics_workspace" "data_export_log_analytics_workspace" {
  name                = "testdataexportlaw"
  location            = azurerm_resource_group.data_export_resource_group.location
  resource_group_name = azurerm_resource_group.data_export_resource_group.name
  sku                 = "PerGB2018"
  retention_in_days   = 30
}

resource "azurerm_eventhub_namespace" "data_export_azurerm_eventhub_namespace" {
  name                = "testdataexportehnamespace"
  location            = azurerm_resource_group.data_export_resource_group.location
  resource_group_name = azurerm_resource_group.data_export_resource_group.name
  sku                 = "Standard"
  capacity            = 1

  tags = {
    environment = "Production"
  }
}

resource "azurerm_eventhub" "data_export_eventhub" {
  name                = "testdataexporteh1"
  namespace_name      = azurerm_eventhub_namespace.data_export_azurerm_eventhub_namespace.name
  resource_group_name = azurerm_resource_group.data_export_resource_group.name
  partition_count     = 2
  message_retention   = 1
}

resource "azurerm_log_analytics_data_export_rule" "example" {
  name                    = "testdataExport1"
  resource_group_name     = azurerm_resource_group.data_export_resource_group.name
  workspace_resource_id   = azurerm_log_analytics_workspace.data_export_log_analytics_workspace.id
  destination_resource_id = azurerm_eventhub.data_export_eventhub.id
  table_names             = ["Usage","StorageBlobLogs"]
  enabled                 = true
}