servercore_dbaas_kafka_topic_v1
Creates and manages a topic in a Kafka datastore using public API v1. For more information about managing topics in Kafka, see the official Servercore documentation.
Example usage
resource "servercore_dbaas_kafka_topic_v1" "topic_1" {
project_id = servercore_project_v2.project_1.id
region = "ru-3"
datastore_id = servercore_dbaas_kafka_datastore_v1.datastore_1.id
name = "topic"
partitions = 1
}