Skip to content

Commit 3a6b87d

Browse files
authored
Merge pull request #367 from SumoLogic/Add_CRITICAL_to_sumologic_cse_custom_insight_severity
Add CRITICAL as a valid value for cse_custom_insight severity field
2 parents 97c3792 + 424edb3 commit 3a6b87d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
FEATURES:
44
* Add new optional `alert_name` field to resource/sumologic_monitor.
55

6+
BUG FIXES:
7+
* Add CRITICAL as a valid value for cse_custom_insight severity field (GH-367)
8+
69
## 2.14.0 (March 30, 2022)
710

811
FEATURES:

sumologic/resource_sumologic_cse_custom_insight.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func resourceSumologicCSECustomInsight() *schema.Resource {
4343
"severity": {
4444
Type: schema.TypeString,
4545
Required: true,
46-
ValidateFunc: validation.StringInSlice([]string{"HIGH", "MEDIUM", "LOW"}, false),
46+
ValidateFunc: validation.StringInSlice([]string{"HIGH", "MEDIUM", "LOW", "CRITICAL"}, false),
4747
},
4848
"signal_names": {
4949
Type: schema.TypeList,

0 commit comments

Comments
 (0)