We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74da101 commit 7e03a7eCopy full SHA for 7e03a7e
variables.tf
@@ -1,12 +1,21 @@
1
variable "namespace" {}
2
variable "kafka_name" {}
3
variable "cluster_size" {}
4
-variable "offset_topic_replication_factor" {}
5
-variable "zookeeper_cluster_size" {}
6
-variable "kafka_rest_replicacount" {}
7
-variable "kafka_rest_ingress_host" {}
+variable "offset_topic_replication_factor" {
+ default = 1
+}
+variable "zookeeper_cluster_size" {
8
9
10
+variable "kafka_rest_replicacount" {
11
12
13
+variable "kafka_rest_ingress_host" {
14
+ default = "mydearhost.io"
15
16
variable "kafka_rest_ingress_annotations" {
17
type = list(object({key = string, value = string}))
18
+ default = []
19
}
20
variable "kafka_rest_enabled" {
21
type = bool
0 commit comments