terraform-contour-mirror/modules/kafka-topics-yc/outputs.tf

10 lines
310 B
HCL

output "topic_names" {
description = "Kafka topics managed by this service manifest state."
value = keys(yandex_mdb_kafka_topic.this)
}
output "user_names" {
description = "Kafka users managed by this service manifest state."
value = [for user in yandex_mdb_kafka_user.this : user.name]
}