Skip to content

Commit 0da974e

Browse files
committed
Fixed "num_instances" terraform variable definition
1 parent 241b0d4 commit 0da974e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

driver-kafka/deploy/provision-kafka-aws.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ variable "instance_types" {
2121
type = "map"
2222
}
2323

24+
variable "num_instances" {
25+
type = "map"
26+
}
27+
2428
provider "aws" {
2529
region = "${var.region}"
2630
}

driver-pulsar/deploy/provision-pulsar-aws.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ variable "instance_types" {
2121
type = "map"
2222
}
2323

24+
variable "num_instances" {
25+
type = "map"
26+
}
27+
2428
provider "aws" {
2529
region = "${var.region}"
2630
}

0 commit comments

Comments
 (0)