Files

17 lines
365 B
Terraform
Raw Permalink Normal View History

variable "tag" {
description = "Python image tag"
type = string
default = "3.12-slim"
}
variable "namespace" {
description = "Kubernetes namespace to deploy the prometheus exporter"
type = string
default = "prometheus"
}
variable "persistent_folder" {
description = "The path to the persistent folder"
type = string
}