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
6 changes: 6 additions & 0 deletions docs/changelog/137222.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 137222
summary: "[Sentinel One] Add `manage`, `create_index`, `read`, `index`, `write`, `delete`, permission for third-party agent indices in the `Kibana system` to support the threat event data stream."
area: Authorization
type: enhancement
issues:
- 240901
Original file line number Diff line number Diff line change
Expand Up @@ -550,14 +550,15 @@ static RoleDescriptor kibanaSystem(String name) {
TransportDeleteIndexAction.TYPE.name()
)
.build(),
// For ExtraHop, QualysGAV, SentinelOne Application Dataset, Island Browser and Cyera specific actions.
// For ExtraHop, QualysGAV, SentinelOne, Island Browser and Cyera specific actions.
// Kibana reads, writes and manages this index
// for configured ILM policies.
RoleDescriptor.IndicesPrivileges.builder()
.indices(
"logs-extrahop.investigation-*",
"logs-qualys_gav.asset-*",
"logs-sentinel_one.application-*",
"logs-sentinel_one.threat_event-*",
"logs-island_browser.user-*",
"logs-island_browser.device-*",
"logs-cyera.classification-*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1984,6 +1984,7 @@ public void testKibanaSystemRole() {
"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.threat_event-" + randomAlphaOfLength(randomIntBetween(1, 10)),
"logs-island_browser.user-" + randomAlphaOfLength(randomIntBetween(1, 10)),
"logs-island_browser.device-" + randomAlphaOfLength(randomIntBetween(1, 10)),
"logs-cyera.classification-" + randomAlphaOfLength(randomIntBetween(1, 10)),
Expand Down