resource "kafka_topic" "event_abacus_contract" {
  name               = "event.abacus.contract"
  replication_factor = 3
  partitions         = 3
  config = {
    "max.message.bytes" = "15728640"
    "retention.ms"      = "86400000"
  }
}
