-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alerting: Introduce support of responders for OpsGenie integration (#…
…1100) * introduce support of responders for OpsGenie integration * Run tests in cloud instance --------- Co-authored-by: Julien Duchesne <[email protected]>
- Loading branch information
1 parent
4386b97
commit 4e8aa22
Showing
4 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
examples/resources/grafana_contact_point/_acc_receiver_types_10_3.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
resource "grafana_contact_point" "receiver_types" { | ||
name = "Receiver Types since v10.3" | ||
|
||
opsgenie { | ||
url = "http://opsgenie-api" | ||
api_key = "token" | ||
message = "message" | ||
description = "description" | ||
auto_close = true | ||
override_priority = true | ||
send_tags_as = "both" | ||
responders { | ||
type = "user" | ||
id = "803f87e1a7f848b0a0779810bee5d1d3" | ||
} | ||
responders { | ||
type = "team" | ||
name = "Test team" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters