mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 18:51:36 +03:00
10 lines
310 B
HCL
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]
|
|
}
|