terraform-modules/grafana/message-template/variables.tf

17 lines
No EOL
507 B
HCL

variable "templates_dir" {
description = "Relative path (from the root module) that holds all *.go or *.tmpl template files."
type = string
default = "templates"
}
variable "file_pattern" {
description = "Glob pattern for template files inside templates_dir."
type = string
default = "*.tmpl" # change to *.tmpl if you prefer
}
variable "disable_provenance" {
description = "Leave templates editable in Grafana UI."
type = bool
default = false
}