Skip to content

Commit

Permalink
Merge pull request #938 from okta/fix_group_search
Browse files Browse the repository at this point in the history
Fixed group search in the `okta_groups` data source
  • Loading branch information
monde authored Feb 2, 2022
2 parents f22c008 + de3bbe8 commit c714eab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions okta/data_source_okta_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func dataSourceGroupsRead(ctx context.Context, d *schema.ResourceData, m interfa
}
q, ok := d.GetOk("q")
if ok {
qp.Limit = 0
qp.Q = q.(string)
}
search, ok := d.GetOk("search")
Expand Down

0 comments on commit c714eab

Please sign in to comment.