Skip to content

Commit

Permalink
fix(kafkatopic): replication for startup-2 plan
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-savciuc authored and Serpentiel committed Sep 18, 2023
1 parent 5cd9573 commit 4ca9f35
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/sdkprovider/service/kafkatopic/kafka_topic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ resource "aiven_kafka_topic" "topic" {
service_name = aiven_kafka.kafka.service_name
topic_name = "topic"
partitions = 5
replication = 3
replication = 2
}`, prefix, project)
}

Expand Down Expand Up @@ -513,7 +513,7 @@ resource "aiven_kafka_topic" "topic" {
service_name = aiven_kafka.kafka.service_name
topic_name = "topic"
partitions = 5
replication = 3
replication = 2
}
`, prefix, project)
return result
Expand Down Expand Up @@ -554,15 +554,15 @@ resource "aiven_kafka_topic" "topic" {
service_name = aiven_kafka.kafka.service_name
topic_name = "conflict"
partitions = 5
replication = 3
replication = 2
}
resource "aiven_kafka_topic" "topic_conflict" {
project = aiven_kafka.kafka.project
service_name = aiven_kafka.kafka.service_name
topic_name = "conflict"
partitions = 5
replication = 3
replication = 2
depends_on = [
aiven_kafka_topic.topic
Expand Down

0 comments on commit 4ca9f35

Please sign in to comment.