|
@@ -1914,12 +1914,15 @@ public class ReservedRolesStoreTests extends ESTestCase {
|
|
|
assertThat(kibanaRole.indices().allowedIndicesMatcher(RolloverAction.NAME).test(indexAbstraction), is(true));
|
|
|
});
|
|
|
|
|
|
- // Tests for third-party agent indices (ExtraHop, QualysGAV, SentinelOne) that `kibana_system` has full management access to
|
|
|
+ // Tests for third-party agent indices (ExtraHop, QualysGAV, SentinelOne, Island Browser) that `kibana_system`
|
|
|
+ // has full management access to
|
|
|
// This includes read, write, create, delete, and all ILM-related management actions.
|
|
|
Arrays.asList(
|
|
|
"logs-extrahop.investigation-" + randomAlphaOfLength(randomIntBetween(1, 10)),
|
|
|
"logs-qualys_gav.asset-" + randomAlphaOfLength(randomIntBetween(1, 10)),
|
|
|
- "logs-sentinel_one.application-" + randomAlphaOfLength(randomIntBetween(1, 10))
|
|
|
+ "logs-sentinel_one.application-" + randomAlphaOfLength(randomIntBetween(1, 10)),
|
|
|
+ "logs-island_browser.user-" + randomAlphaOfLength(randomIntBetween(1, 10)),
|
|
|
+ "logs-island_browser.device-" + randomAlphaOfLength(randomIntBetween(1, 10))
|
|
|
).forEach((index_qualys_extra_hop) -> {
|
|
|
final IndexAbstraction indexAbstraction = mockIndexAbstraction(index_qualys_extra_hop);
|
|
|
|