Skip to content

Commit ac6c7a9

Browse files
authored
Bugfix: Adding dot prefix to entity analytics system indices (elastic#127558)
1 parent 03d7781 commit ac6c7a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/store/KibanaOwnedReservedRoleDescriptors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ static RoleDescriptor kibanaSystem(String name) {
510510
.build(),
511511
// security entity analytics indices
512512
RoleDescriptor.IndicesPrivileges.builder().indices("risk-score.risk-*").privileges("all").build(),
513-
RoleDescriptor.IndicesPrivileges.builder().indices("entity_analytics.*").privileges("all").build(),
513+
RoleDescriptor.IndicesPrivileges.builder().indices(".entity_analytics.*").privileges("all").build(),
514514
RoleDescriptor.IndicesPrivileges.builder()
515515
.indices(".asset-criticality.asset-criticality-*")
516516
.privileges("create_index", "manage", "read", "write")

0 commit comments

Comments
 (0)