Files
grafana-terraform/environments/dev/adibrov/variables_contact_points.tf
Alexandr 558a23d916
Some checks failed
terraform-dev / validate (push) Failing after 1m53s
terraform-dev / plan (push) Has been skipped
terraform-dev / apply (push) Has been skipped
Add dashboard UID auto-generation and Gitea CI workflow
2026-03-25 06:41:19 +03:00

23 lines
467 B
HCL

variable "contact_points" {
description = "List of contact points"
type = list(object({
name = string
type = string
is_default = optional(bool, false)
labels = optional(map(string))
settings = map(string)
}))
default = []
}
#output "contact_point_ids01" {
# value = module.grafana_contact_points01.contact_point_ids
#}
#output "contact_point_ids02" {
# value = module.grafana_contact_points02.contact_point_ids
#}