9 lines
283 B
HCL
9 lines
283 B
HCL
resource "grafana_contact_point" "this" {
|
|
name = var.contact_point_name
|
|
|
|
googlechat {
|
|
url = var.gchat_url
|
|
message = "{{ template \"${var.template_prefix}gchat-body-template\" . }}"
|
|
title = "{{ template \"${var.template_prefix}gchat-title-template\" . }}"
|
|
}
|
|
}
|