Patrick de Ruiter 553f03285a
Some checks failed
Monitors / pre_job (push) Successful in 14s
Monitors / check (push) Failing after 1m30s
Initial commit with README and module files
2025-11-01 10:43:48 +01:00

31 lines
665 B
HCL
Executable File

variable "message_alert" {
description = "Define a broadcast channel for critical alerts"
type = string
}
variable "message_warning" {
description = "Define a broadcast channel for warning alerts"
type = string
default = null
}
variable "message_nodata" {
description = "Define a broadcast channel for nodata alerts"
type = string
default = null
}
variable "prepend_text" {
description = "Optional free text string to prepend to alert"
type = string
default = ""
}
variable "append_text" {
description = "Optional free text string to append to alert"
type = string
default = ""
}