Skip to content

Commit

Permalink
DENA-933 - add producer for web collectors (#732)
Browse files Browse the repository at this point in the history
Using a separate producer for the web collectors
  • Loading branch information
sbuliarca authored Dec 17, 2024
1 parent 843fd58 commit 1121c7e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dev-aws/otel/otel.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ module "otel_collector" {
cert_common_name = "otel/collector"
}

module "otel_collector_web" {
source = "../../modules/tls-app"
produce_topics = [kafka_topic.otlp_spans.name]
cert_common_name = "otel/collector-web"
}

module "tempo_distributor" {
source = "../../modules/tls-app"
consume_topics = [kafka_topic.otlp_spans.name]
Expand Down
6 changes: 6 additions & 0 deletions prod-aws/otel/otel.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ module "otel_collector" {
cert_common_name = "otel/collector"
}

module "otel_collector_web" {
source = "../../modules/tls-app"
produce_topics = [kafka_topic.otlp_spans.name]
cert_common_name = "otel/collector-web"
}

module "tempo_distributor" {
source = "../../modules/tls-app"
consume_topics = [kafka_topic.otlp_spans.name]
Expand Down

0 comments on commit 1121c7e

Please sign in to comment.