2025-10-02 00:19:01 +02:00
|
|
|
variable "fqdn" {
|
|
|
|
|
description = "The fully qualified domain name for the app server"
|
|
|
|
|
type = string
|
|
|
|
|
default = ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "issuer" {
|
|
|
|
|
description = "The issuer for the certificate"
|
|
|
|
|
type = string
|
|
|
|
|
default = "internal-ca"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "tag" {
|
|
|
|
|
description = "Grafana image tag"
|
|
|
|
|
type = string
|
|
|
|
|
default = "latest"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "persistent_folder" {
|
|
|
|
|
description = "The path to the persistent folder"
|
|
|
|
|
type = string
|
|
|
|
|
}
|
2026-05-22 23:41:26 +02:00
|
|
|
|
|
|
|
|
variable "prometheus_url" {
|
|
|
|
|
description = "Prometheus service URL used by Grafana datasource provisioning"
|
|
|
|
|
type = string
|
|
|
|
|
default = "http://prometheus.prometheus.svc.cluster.local:9090"
|
|
|
|
|
}
|