Skip to content

Commit f1302aa

Browse files
Add required ilm policy for sentinelon threat event dataset
1 parent 4245e18 commit f1302aa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,14 +550,15 @@ static RoleDescriptor kibanaSystem(String name) {
550550
TransportDeleteIndexAction.TYPE.name()
551551
)
552552
.build(),
553-
// For ExtraHop, QualysGAV, SentinelOne Application Dataset, Island Browser and Cyera specific actions.
553+
// For ExtraHop, QualysGAV, SentinelOne, Island Browser and Cyera specific actions.
554554
// Kibana reads, writes and manages this index
555555
// for configured ILM policies.
556556
RoleDescriptor.IndicesPrivileges.builder()
557557
.indices(
558558
"logs-extrahop.investigation-*",
559559
"logs-qualys_gav.asset-*",
560560
"logs-sentinel_one.application-*",
561+
"logs-sentinel_one.threat_event-*",
561562
"logs-island_browser.user-*",
562563
"logs-island_browser.device-*",
563564
"logs-cyera.classification-*",

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/security/authz/store/ReservedRolesStoreTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1984,6 +1984,7 @@ public void testKibanaSystemRole() {
19841984
"logs-extrahop.investigation-" + randomAlphaOfLength(randomIntBetween(1, 10)),
19851985
"logs-qualys_gav.asset-" + randomAlphaOfLength(randomIntBetween(1, 10)),
19861986
"logs-sentinel_one.application-" + randomAlphaOfLength(randomIntBetween(1, 10)),
1987+
"logs-sentinel_one.threat_event-" + randomAlphaOfLength(randomIntBetween(1, 10)),
19871988
"logs-island_browser.user-" + randomAlphaOfLength(randomIntBetween(1, 10)),
19881989
"logs-island_browser.device-" + randomAlphaOfLength(randomIntBetween(1, 10)),
19891990
"logs-cyera.classification-" + randomAlphaOfLength(randomIntBetween(1, 10)),

0 commit comments

Comments
 (0)