Skip to content
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

Point in time security changes #1989

Merged
merged 3 commits into from
Aug 9, 2022
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
3 changes: 3 additions & 0 deletions src/main/resources/static_config/static_action_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ cluster_composite_ops:
- "indices:admin/aliases*"
- "indices:data/write/reindex"
- "cluster_composite_ops_ro"
- "indices:data/read/point_in_time/delete"
type: "cluster"
description: "Allow read/write bulk and m* operations"
cluster_composite_ops_ro:
Expand All @@ -130,6 +131,8 @@ cluster_composite_ops_ro:
- "indices:admin/aliases/get*"
- "indices:data/read/scroll"
- "indices:admin/resolve/index"
- "indices:data/read/point_in_time/read*"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does read* mean, Is it read all pits if yes should we name it different to avoid confusion with index data read

- "indices:data/read/point_in_time/create"
type: "cluster"
description: "Allow readonly bulk and m* operations"
get:
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/static_config/static_roles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ kibana_server:
- "cluster_composite_ops"
- "indices:admin/template*"
- "indices:data/read/scroll*"
- "indices:data/read/point_in_time*"
index_permissions:
- index_patterns:
- ".kibana"
Expand Down