11 lines
326 B
HCL
11 lines
326 B
HCL
resource "grafana_contact_point" "this" {
|
|
name = var.contact_point_name
|
|
disable_provenance = var.disable_provenance
|
|
|
|
opsgenie {
|
|
api_key = var.opsgenie_api_key
|
|
url = var.opsgenie_url
|
|
override_priority = var.override_priority
|
|
auto_close = var.auto_close
|
|
}
|
|
}
|