Skip to content

Commit

Permalink
update fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fillyD committed Dec 20, 2024
1 parent 0549a0f commit 45c6aaf
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions dev-aws/kafka-shared-msk/dev-enablement/kafka-connect.tf
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
# https://docs.confluent.io/platform/7.8/connect/references/allconfigs.html#distributed-worker-configuration
resource "kafka_topic" "_connect_configs" {
name = "_connect-configs"
resource "kafka_topic" "connect_configs" {
name = "dev-enablement.connect-configs"
partitions = 1
replication_factor = 3

config = {
"cleanup.policy" = "compact"
"compression.type" = "zstd"
"retention.ms" = "-1"
"cleanup.policy" = "compact"
"compression.type" = "zstd"

}
}

resource "kafka_topic" "_connect_offsets" {
name = "_connect-offsets"
resource "kafka_topic" "connect_offsets" {
name = "dev-enablement.connect-offsets"
partitions = 25
replication_factor = 3

config = {
"cleanup.policy" = "compact"
"compression.type" = "zstd"
"retention.ms" = "-1"
"cleanup.policy" = "compact"
"compression.type" = "zstd"

}
}

resource "kafka_topic" "_connect_status" {
name = "_connect-status"
resource "kafka_topic" "connect_status" {
name = "dev-enablement.connect-status"
partitions = 5
replication_factor = 3

config = {
"cleanup.policy" = "compact"
"compression.type" = "zstd"
"retention.ms" = "-1"
"cleanup.policy" = "compact"
"compression.type" = "zstd"

}
}

Expand Down

0 comments on commit 45c6aaf

Please sign in to comment.