-
Notifications
You must be signed in to change notification settings - Fork 254
[DOCS] Adds read_ccr and manage_ccr privileges #149
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 3 commits
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 |
|---|---|---|
|
|
@@ -29,6 +29,11 @@ This includes snapshotting, updating settings, and rerouting. It also includes | |
| obtaining snapshot and restore status. This privilege does not include the | ||
| ability to manage security. | ||
|
|
||
| `manage_ccr`:: | ||
| All {ccr} operations related to managing follower indices and auto-follow | ||
| patterns. It also includes the authority to grant the privileges necessary to | ||
| manage follower indices and auto-follow patterns. | ||
|
|
||
| `manage_index_templates`:: | ||
| All operations on index templates. | ||
|
|
||
|
|
@@ -62,6 +67,11 @@ who created or updated them. | |
|
|
||
| -- | ||
|
|
||
| `read_ccr`:: | ||
| All read only {ccr} operations, such as getting information about indices and | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would highlight that this cluster level privilege only needs to be configured in the leader cluster.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, I've added that info in this PR. |
||
| metadata for leader indices in the cluster. It also includes the authority to | ||
| check whether users have the appropriate privileges to follow leader indices. | ||
|
|
||
| `transport_client`:: | ||
| All privileges necessary for a transport client to connect. Required by the remote | ||
| cluster to enable <<cross-cluster-configuring,Cross Cluster Search>>. | ||
|
|
@@ -82,6 +92,10 @@ All `monitor` privileges plus index administration (aliases, analyze, cache clea | |
| close, delete, exists, flush, mapping, open, force merge, refresh, settings, | ||
| search shards, templates, validate). | ||
|
|
||
| `manage_follow_index`:: | ||
| All actions that are required to manage a follower index, which includes pausing | ||
|
||
| and resuming {ccr}. | ||
|
|
||
| `view_index_metadata`:: | ||
| Read-only access to index metadata (aliases, aliases exists, get index, exists, field mappings, | ||
| mappings, search shards, type exists, validate, warmers, settings). This | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would highlight that this cluster level privilege only needs to be configured in the follower cluster.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I've added that info too!