Skip to content

Commit

Permalink
x-pack/filebeat/input/entityanalytics/provider/okta: fix publication …
Browse files Browse the repository at this point in the history
…of groups (#40681)
  • Loading branch information
efd6 authored Sep 3, 2024
1 parent 3f3e57d commit 1f20a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Fix the "No such input type exist: 'azure-eventhub'" error on the Windows platform {issue}40608[40608] {pull}40609[40609]
- awss3 input: Fix handling of SQS notifications that don't contain a region. {pull}40628[40628]
- Fix credential handling when workload identity is being used in GCS input. {issue}39977[39977] {pull}40663[40663]
- Fix publication of group data from the Okta entity analytics provider. {pull}40681[40681]

*Heartbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ func (p *oktaInput) publishUser(u *User, state *stateStore, inputID string, clie
_, _ = userDoc.Put("okta", u.User)
_, _ = userDoc.Put("labels.identity_source", inputID)
_, _ = userDoc.Put("user.id", u.ID)
_, _ = userDoc.Put("groups", u.Groups)

switch u.State {
case Deleted:
Expand Down

0 comments on commit 1f20a39

Please sign in to comment.