mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
In https://github.com/elastic/elasticsearch/pull/21964, index and delete operations are executed as single item bulk requests internally. This means index and delete operations use the bulk transport endpoints (indices:data/write/bulk[s][p] and indices:data/write/bulk[s][r]). This PR adds bulk transport endpoint to 'write' and 'delete' index privilages and adds index and delete action as composite actions to delay the authentication to the shard level. Original commit: elastic/x-pack-elasticsearch@2305fc9ca0
34 lines
613 B
YAML
34 lines
613 B
YAML
admin:
|
|
cluster:
|
|
- all
|
|
indices:
|
|
- names: '*'
|
|
privileges:
|
|
- all
|
|
|
|
graph_explorer:
|
|
cluster:
|
|
- cluster:monitor/health
|
|
- cluster:monitor/main
|
|
indices:
|
|
- names: '*'
|
|
privileges:
|
|
- read
|
|
- write
|
|
- indices:admin/refresh
|
|
- indices:admin/create
|
|
|
|
|
|
no_graph_explorer:
|
|
cluster:
|
|
- cluster:monitor/health
|
|
- cluster:monitor/main
|
|
indices:
|
|
- names: '*'
|
|
privileges:
|
|
- indices:data/read/search
|
|
- indices:data/write/index
|
|
- indices:data/write/bulk
|
|
- indices:admin/refresh
|
|
- indices:admin/create
|