-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathopensearch.sh
42 lines (40 loc) · 1.17 KB
/
opensearch.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
. .env
docker compose exec -it opensearch curl -XPUT -u admin:${OPENSEARCH_PASSWORD} "opensearch:9200/_plugins/_security/api/roles/indexer_${BRAND}" -H "Content-Type: application/json" -d "$(cat <<EOF
{
"cluster_permissions": [
"cluster_composite_ops_monitor",
"cluster:monitor/main",
"cluster:monitor/state",
"cluster:monitor/health"
],
"index_permissions": [
{
"index_patterns": ["indexer_${BRAND}*"],
"fls": [],
"masked_fields": [],
"allowed_actions": ["*"]
},
{
"index_patterns": ["*"],
"fls": [],
"masked_fields": [],
"allowed_actions": [
"indices:admin/aliases/get",
"indices:data/read/search",
"indices:admin/get"]
}
],
"tenant_permissions": []
}
EOF
)"
docker compose exec -it opensearch curl -XPUT -u admin:${OPENSEARCH_PASSWORD} -XPUT "http://opensearch:9200/_plugins/_security/api/internalusers/indexer_${BRAND}" \
-H "Content-Type: application/json" \
-d "$(cat <<EOF
{
"password": "${INDEXER_PASSWORD}",
"opendistro_security_roles": ["indexer_${BRAND}", "own_index"]
}
EOF
)"