12 lines
263 B
Terraform
12 lines
263 B
Terraform
variable "tag" {
|
|
description = "Fail2Ban exporter image tag"
|
|
type = string
|
|
default = "latest"
|
|
}
|
|
|
|
variable "namespace" {
|
|
description = "Kubernetes namespace to deploy the Fail2Ban exporter"
|
|
type = string
|
|
default = "kube-system"
|
|
}
|