34 lines
769 B
Terraform
34 lines
769 B
Terraform
|
|
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 "exporter_port" {
|
||
|
|
description = "Port where the Prometheus exporter serves metrics"
|
||
|
|
type = number
|
||
|
|
default = 9100
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "rd_port" {
|
||
|
|
description = "Chromium Remote Debugging port inside the pod"
|
||
|
|
type = number
|
||
|
|
default = 9222
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "devolo_ip" {
|
||
|
|
description = "IP address of the Devolo device"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "devolo_model" {
|
||
|
|
description = "Model of the Devolo device (e.g., '620' for Devolo Magic 2 WiFi next)"
|
||
|
|
type = string
|
||
|
|
}
|