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 7b54651 commit 841ac69
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 @@ -448,7 +448,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 @@ -514,7 +514,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 @@ -555,15 +555,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 841ac69

Please sign in to comment.