Skip to content

Commit 57eef32

Browse files
committed
Merge branch 'master' of https://github.com/SumoLogic/terraform-provider-sumologic into ayiu_SUMO-192150_fgp_release_doc
2 parents 21763a8 + 0abee9a commit 57eef32

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
## 2.16.0 (Unreleased)
2+
3+
FEATURES:
24
* Add new optional `obj_permission` set to resource/sumologic_monitor_folder for Fine Grain Permission (FGP) support (GH-373)
35

6+
## 2.15.1 (Unreleased)
7+
8+
BUG FIXES:
9+
* Fix bug in cse match list items creation (was timing out due to StateChangeConf on an infinite loop) (GH-377)
10+
411
## 2.15.0 (May 13, 2022)
512

613
FEATURES:

sumologic/sumologic_cse_match_list_item.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ func (s *Client) GetCSEMatchListItem(id string) (*CSEMatchListItemGet, error) {
2525
}
2626

2727
func (s *Client) GetCSEMatchListItemsInMatchList(MatchListId string) (*CSEMatchListItemsInMatchListGet, error) {
28-
29-
data, _, err := s.Get(fmt.Sprintf("sec/v1/match-list-items?listIds[%s]", MatchListId))
28+
data, _, err := s.Get(fmt.Sprintf("sec/v1/match-list-items?listIds=%s", MatchListId))
3029
if err != nil {
3130
return nil, err
3231
}

0 commit comments

Comments
 (0)