-
Notifications
You must be signed in to change notification settings - Fork 17
/
variables.tf
84 lines (69 loc) · 1.35 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
variable "namespace" {}
variable "kafka_name" {}
variable "confluent_kafka_version" {
type = string
default = "5.4.0"
}
variable "kafka_storage_size" {
type = string
default = "1Gi"
}
variable "kafka_storage_class_name" {
type = string
default = "standard"
}
variable "cluster_size" {
default = 1
}
variable "allow_auto_create_topics" {
type = bool
default = true
}
variable "offset_topic_replication_factor" {
default = 1
}
variable "default_replication_factor" {
default = 1
}
variable "min_insync_replicas" {
default = 1
}
variable "transaction_state_log_replication_factor" {
default = 1
}
variable "transaction_state_log_min_isr" {
default = 1
}
variable "zookeeper_cluster_size" {
default = 1
}
variable "kafka_rest_replicacount" {
default = 1
}
variable "kafka_rest_ingress_host" {
default = "mydearhost.io"
}
variable "kafka_rest_ingress_annotations" {
type = list(object({ key = string, value = string }))
default = []
}
variable "kafka_rest_enabled" {
type = bool
default = false
}
variable "kafka_rest_endpoint" {
type = string
default = "kafka"
}
variable "kafka_rest_ingress_enabled" {
type = bool
default = true
}
variable "zookeeper_storage_size" {
type = string
default = "2Gi"
}
variable "zookeeper_storage_class_name" {
type = string
default = "standard"
}