32 lines
No EOL
733 B
HCL
32 lines
No EOL
733 B
HCL
variable "contact_point_name" {
|
|
description = "Name of the Grafana contact point"
|
|
type = string
|
|
}
|
|
|
|
variable "gchat_url" {
|
|
description = "Google Chat webhook URL"
|
|
type = string
|
|
}
|
|
|
|
variable "templates_dir" {
|
|
description = "Path to directory containing template files (.tmpl)"
|
|
type = string
|
|
}
|
|
|
|
variable "file_pattern" {
|
|
description = "Pattern to match template files"
|
|
type = string
|
|
default = "*.tmpl"
|
|
}
|
|
|
|
variable "disable_provenance" {
|
|
description = "Disable provenance for message templates"
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "template_prefix" {
|
|
description = "Optional prefix for template names to avoid collisions"
|
|
type = string
|
|
default = ""
|
|
} |