Yelp / terraform-provider-signalform

SignalForm is a terraform provider to codify SignalFx detectors, charts and dashboards
Apache License 2.0
44 stars 26 forks source link

Add Slack notification support in detector rules #9

Closed dichiarafrancesco closed 6 years ago

dichiarafrancesco commented 6 years ago

As requested in https://github.com/Yelp/terraform-provider-signalform/issues/8 we're going to add support for slack notifications in our detectors.

blkperl commented 6 years ago

Tested manually and Slack integration is working with this patch applied.

marcingumkowski commented 5 years ago

Could you show the example of Slack notifications in TF? this notifications = ["Slack,credentialID,channel,"]` doesnt work

blkperl commented 5 years ago

@marcingumkowski like this (although it looks like you have that):

notifications = "${var.team_slack}"

variable "team_slack" {
  description = "Team SignalFX Slack integration"
  default     = ["Slack,credentialID,team-channel"]
}