From 24deced9d3574a51e75efd8b0cfca9543472c157 Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Wed, 21 Sep 2022 15:47:40 +0200 Subject: [PATCH] update `streetlights-kafka.yml` example --- examples/streetlights-kafka.yml | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/examples/streetlights-kafka.yml b/examples/streetlights-kafka.yml index 7bef1a59..acd9d396 100644 --- a/examples/streetlights-kafka.yml +++ b/examples/streetlights-kafka.yml @@ -17,10 +17,41 @@ info: servers: test: url: test.mykafkacluster.org:8092 - protocol: kafka-secure + protocol: kafka description: Test broker + tags: + - name: "env:test" + description: "This environment is meant for users to run their test use cases" + - name: "kind:remote" + description: "This server is a remote server. Not exposed by the application" + - name: "visibility:public" + description: "This resource is public and available to everyone" + development: + url: dev.mykafkacluster.org:8092 + protocol: kafka-secure + description: Development broker + security: + - saslScram: [] + tags: + - name: "env:development" + description: "This environment is meant for internal development use cases" + - name: "kind:remote" + description: "This server is a remote server. Not exposed by the application" + - name: "visibility:private" + description: "This resource is private and only available to certain users" + production: + url: mykafkacluster.org:8092 + protocol: kafka-secure + description: Kafka broker security: - saslScram: [] + tags: + - name: "env:production" + description: "This environment is meant for production use case" + - name: "kind:remote" + description: "This server is a remote server. Not exposed by the application" + - name: "visibility:private" + description: "This resource is private and only available to certain users" defaultContentType: application/json