17 lines
373 B
Terraform
17 lines
373 B
Terraform
|
|
variable "tag" {
|
||
|
|
description = "Python image tag"
|
||
|
|
type = string
|
||
|
|
default = "python:3.12-slim"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "namespace" {
|
||
|
|
description = "Kubernetes namespace to deploy the prometheus exporter"
|
||
|
|
type = string
|
||
|
|
default = "kube-system"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "persistent_folder" {
|
||
|
|
description = "The path to the persistent folder"
|
||
|
|
type = string
|
||
|
|
}
|