Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/114363.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 114363
summary: Give the kibana system user permission to read security entities
area: Infra/Core
type: enhancement
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -458,11 +458,13 @@ static RoleDescriptor kibanaSystem(String name) {
TransportUpdateSettingsAction.TYPE.name()
)
.build(),
// security entity analytics indices
RoleDescriptor.IndicesPrivileges.builder().indices("risk-score.risk-*").privileges("all").build(),
RoleDescriptor.IndicesPrivileges.builder()
.indices(".asset-criticality.asset-criticality-*")
.privileges("create_index", "manage", "read")
.build(),
RoleDescriptor.IndicesPrivileges.builder().indices(".entities.v1.latest.security*").privileges("read").build(),
// For cloud_defend usageCollection
RoleDescriptor.IndicesPrivileges.builder()
.indices("logs-cloud_defend.*", "metrics-cloud_defend.*")
Expand Down