Files
monitor-playground/terraform/variables.tf
2026-03-07 19:26:47 +08:00

20 lines
299 B
HCL

variable "grafana_url" {
type = string
default = "http://localhost:3000"
}
variable "grafana_auth" {
type = string
sensitive = true
}
variable "telegram_bot_token" {
type = string
sensitive = true
}
variable "telegram_chat_id" {
type = string
sensitive = true
}