2025-10-03 00:26:47 +02:00
|
|
|
variable "tag" {
|
|
|
|
|
description = "Python image tag"
|
|
|
|
|
type = string
|
2025-10-06 18:41:01 +02:00
|
|
|
default = "3.12-slim"
|
2025-10-03 00:26:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "namespace" {
|
|
|
|
|
description = "Kubernetes namespace to deploy the prometheus exporter"
|
|
|
|
|
type = string
|
2025-10-05 23:18:44 +02:00
|
|
|
default = "prometheus"
|
2025-10-03 00:26:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "persistent_folder" {
|
|
|
|
|
description = "The path to the persistent folder"
|
|
|
|
|
type = string
|
|
|
|
|
}
|