Files
grafana-terraform/environments/modules/grafana_contact_points/variables.tf
Alexandr 8f0f9b7f47
Some checks failed
terraform-dev / validate (push) Failing after 47s
terraform-dev / plan (push) Has been skipped
terraform-dev / apply (push) Has been skipped
Apply terraform fmt for CI
2026-03-25 07:31:02 +03:00

30 lines
592 B
HCL

variable "contact_points" {
description = "List of contact points for Grafana alerts"
type = list(object({
name = string
type = string
settings = map(string)
}))
}
variable "disable_provenance" {
description = "Controls whether Grafana provisioning is disabled"
type = bool
default = true
}
variable "org_id" {
description = "ID of the Grafana organization"
type = string
}
variable "grafana_url" {
description = "Grafana URL"
type = string
}
variable "env" {
description = "Grafana environment"
type = string
}