Skip to content

Commit

Permalink
Add "manage" permission for fleet managed threat intel indices (elast…
Browse files Browse the repository at this point in the history
…ic#99231) (elastic#99915)

* Add "manage" permission needed for creating and maintaining aliases of threat intel transforms
  • Loading branch information
kcreddy committed Sep 27, 2023
1 parent e23a476 commit 1c2eeec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/99231.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 99231
summary: Add manage permission for fleet managed threat intel indices
area: Authorization
type: enhancement
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,12 @@ static RoleDescriptor kibanaSystem(String name) {
RoleDescriptor.IndicesPrivileges.builder()
.indices("logs-ti_*_latest.*")
.privileges(
// Require "create_index", "delete_index", "read", "index", "delete", IndicesAliasesAction.NAME, and
// UpdateSettingsAction.NAME for transform
"create_index",
"delete_index",
"read",
"index",
"delete",
"manage",
IndicesAliasesAction.NAME,
UpdateSettingsAction.NAME
)
Expand Down

0 comments on commit 1c2eeec

Please sign in to comment.