-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Granting kibana_system reserved role access to "all" privileges to .adhoc.alerts* and .internal.adhoc.alerts* indices
#127321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
d559964
5966787
9a47df2
e34b3e7
49cf63d
5231345
c0df6dd
f543bd9
44ce3ba
8be39d4
8394f72
79dd079
4e9dda0
67c182c
8d2f9c0
e5fbf27
f017abc
d12adc2
4775ac6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| pr: 127321 | ||
| summary: Granting `kibana_system` reserved role access to "all" privileges to `.adhoc.alerts*` | ||
| and `.internal.adhoc.alerts*` indices | ||
| area: Authorization | ||
| type: enhancement | ||
| issues: [] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -265,6 +265,12 @@ static RoleDescriptor kibanaSystem(String name) { | |
| RoleDescriptor.IndicesPrivileges.builder().indices(ReservedRolesStore.ALERTS_INDEX_ALIAS).privileges("all").build(), | ||
| // "Alerts as data" public index alias used in Security Solution | ||
| // Kibana system user uses them to read / write alerts. | ||
| RoleDescriptor.IndicesPrivileges.builder() | ||
| .indices(ReservedRolesStore.ADHOC_ALERTS_BACKING_INDEX, ReservedRolesStore.ADHOC_ALERTS_INDEX_ALIAS) | ||
| .privileges("create_index", "manage", "read", "write") | ||
|
||
| .build(), | ||
| // "Alerts as data" public index alias used in Security Solution | ||
| // Kibana system user uses them to read / write alerts. | ||
| RoleDescriptor.IndicesPrivileges.builder().indices(ReservedRolesStore.PREVIEW_ALERTS_INDEX_ALIAS).privileges("all").build(), | ||
| // "Alerts as data" internal backing indices used in Security Solution | ||
| // Kibana system user creates these indices; reads / writes to them via the | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.