16 lines
346 B
HCL
16 lines
346 B
HCL
variable "namespace" {
|
|
default = "default"
|
|
type = string
|
|
description = "namespace into which deploy kafka resource"
|
|
}
|
|
|
|
variable "user-auth-type" {
|
|
type = string
|
|
description = "user authentication type : possible value scram-sha-512, tls, tls-external"
|
|
}
|
|
|
|
variable "cluster-name" {
|
|
type = string
|
|
description = "kafka cluster name"
|
|
}
|