Skip to content

Commit d690132

Browse files
authored
add SumoCloudSOAR connection type (#352)
1 parent 9a38640 commit d690132

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## 2.14.0 (Unreleased)
22
* **New Resource:** sumologic_cse_match_list (GH-353)
33

4+
ENHANCEMENTS:
5+
* Add support for SumoCloudSOAR webhook connection
6+
47
## 2.13.0 (February 24, 2022)
58

69
FEATURES:

sumologic/resource_sumologic_connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func resourceSumologicConnection() *schema.Resource {
7777
"webhook_type": {
7878
Type: schema.TypeString,
7979
Optional: true,
80-
ValidateFunc: validation.StringInSlice([]string{"AWSLambda", "Azure", "Datadog", "HipChat", "PagerDuty", "Slack", "Webhook", "NewRelic", "Jira", "Opsgenie", "MicrosoftTeams", "ServiceNow"}, false),
80+
ValidateFunc: validation.StringInSlice([]string{"AWSLambda", "Azure", "Datadog", "HipChat", "PagerDuty", "Slack", "Webhook", "NewRelic", "Jira", "Opsgenie", "MicrosoftTeams", "ServiceNow", "SumoCloudSOAR"}, false),
8181
Default: "Webhook",
8282
},
8383
"connection_subtype": {

website/docs/r/connection.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following arguments are supported:
4949
- `custom_headers` - (Optional) Map of custom webhook headers
5050
- `default_payload` - (Required) Default payload of the webhook.
5151
- `connection_subtype` - (Optional) The subtype of the connection. Valid values are `Incident` and `Event`. NOTE: This is only used for the `ServiceNow` webhook type.
52-
- `webhook_type` - (Optional) Type of webhook. Valid values are `AWSLambda`, `Azure`, `Datadog`, `HipChat`, `PagerDuty`, `Slack`, `Webhook`, `NewRelic`, `MicrosoftTeams`, and `ServiceNow`. Default: `Webhook`
52+
- `webhook_type` - (Optional) Type of webhook. Valid values are `AWSLambda`, `Azure`, `Datadog`, `HipChat`, `PagerDuty`, `Slack`, `Webhook`, `NewRelic`, `MicrosoftTeams`, `ServiceNow`, and `SumoCloudSOAR`. Default: `Webhook`
5353

5454
Additional data provided in state
5555

0 commit comments

Comments
 (0)