-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added dummy search when creating detector on the given indicies
Signed-off-by: Stevan Buzejic <[email protected]>
- Loading branch information
1 parent
d5b9b6f
commit 703cde7
Showing
9 changed files
with
574 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ARG DOCKER_VERSION_ARG | ||
FROM opensearchstaging/opensearch:${DOCKER_VERSION_ARG} | ||
#FROM phaseshiftstudio/opensearch:2.4.0-old-with-security | ||
SHELL ["/bin/bash","-x","-e","-c"] | ||
ARG PLUGIN_ARG | ||
ENV PLUGIN ${PLUGIN_ARG} | ||
RUN if [ -d /usr/share/opensearch/plugins/opensearch-security-analytics ]; then /usr/share/opensearch/bin/opensearch-plugin remove opensearch-security-analytics; fi; | ||
|
||
ADD build/distributions/$PLUGIN /tmp/ | ||
ADD ./ /opt/opensearch-security-analytics | ||
USER root | ||
COPY --chown=opensearch:opensearch ci/roles.yml /usr/share/opensearch/config/opensearch-security/roles.yml | ||
RUN chown -R opensearch:opensearch /opt/opensearch-security-analytics | ||
USER opensearch | ||
RUN /usr/share/opensearch/bin/opensearch-plugin install --batch file:/tmp/$PLUGIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
plugin=`basename $(ls build/distributions/*.zip)` | ||
list_of_files=`ls` | ||
list_of_all_files=`ls build/distributions/` | ||
version=`echo $plugin|awk -F- '{print $3}'| cut -d. -f 1-3` | ||
plugin_version=`echo $plugin | cut -d '-' -f 4 | cut -d '.' -f 1-3` | ||
qualifier=`echo $plugin|awk -F- '{print $4}'| cut -d. -f 1-1` | ||
candidate_version=`echo $plugin|awk -F- '{print $5}'| cut -d. -f 1-1` | ||
docker_version=2.4.0 | ||
|
||
[[ -z $candidate_version ]] && candidate_version=$qualifier && qualifier="" | ||
|
||
echo plugin version plugin_version qualifier candidate_version docker_version | ||
echo "($plugin) ($version) ($plugin_version) ($qualifier) ($candidate_version) ($docker_version)" | ||
echo $ls $list_of_all_files | ||
|
||
docker pull opensearchstaging/opensearch:$docker_version | ||
docker build -t opensearch-alerting-security-analytics:$docker_version \ | ||
--build-arg DOCKER_VERSION_ARG="$docker_version" \ | ||
--build-arg PLUGIN_ARG="$plugin" \ | ||
-f ci/Dockerfile . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,292 @@ | ||
_meta: | ||
type: "roles" | ||
config_version: 2 | ||
|
||
# Restrict users so they can only view visualization and dashboard on OpenSearchDashboards | ||
kibana_read_only: | ||
reserved: true | ||
|
||
# The security REST API access role is used to assign specific users access to change the security settings through the REST API. | ||
security_rest_api_access: | ||
reserved: true | ||
|
||
# Allows users to view monitors, destinations and alerts | ||
alerting_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/alerting/alerts/get' | ||
- 'cluster:admin/opendistro/alerting/destination/get' | ||
- 'cluster:admin/opendistro/alerting/monitor/get' | ||
- 'cluster:admin/opendistro/alerting/monitor/search' | ||
- 'cluster:admin/opensearch/alerting/findings/get' | ||
|
||
# Allows users to view and acknowledge alerts | ||
alerting_ack_alerts: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/alerting/alerts/*' | ||
|
||
# Allows users to use all alerting functionality | ||
alerting_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster_monitor' | ||
- 'cluster:admin/opendistro/alerting/*' | ||
- 'cluster:admin/opensearch/alerting/*' | ||
- 'cluster:admin/opensearch/notifications/feature/publish' | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices_monitor' | ||
- 'indices:admin/aliases/get' | ||
- 'indices:admin/mappings/get' | ||
|
||
# Allow users to read Anomaly Detection detectors and results | ||
anomaly_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/ad/detector/info' | ||
- 'cluster:admin/opendistro/ad/detector/search' | ||
- 'cluster:admin/opendistro/ad/detectors/get' | ||
- 'cluster:admin/opendistro/ad/result/search' | ||
- 'cluster:admin/opendistro/ad/tasks/search' | ||
- 'cluster:admin/opendistro/ad/detector/validate' | ||
- 'cluster:admin/opendistro/ad/result/topAnomalies' | ||
|
||
# Allows users to use all Anomaly Detection functionality | ||
anomaly_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster_monitor' | ||
- 'cluster:admin/opendistro/ad/*' | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices_monitor' | ||
- 'indices:admin/aliases/get' | ||
- 'indices:admin/mappings/get' | ||
|
||
# Allows users to read Notebooks | ||
notebooks_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/notebooks/list' | ||
- 'cluster:admin/opendistro/notebooks/get' | ||
|
||
# Allows users to all Notebooks functionality | ||
notebooks_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/notebooks/create' | ||
- 'cluster:admin/opendistro/notebooks/update' | ||
- 'cluster:admin/opendistro/notebooks/delete' | ||
- 'cluster:admin/opendistro/notebooks/get' | ||
- 'cluster:admin/opendistro/notebooks/list' | ||
|
||
# Allows users to read observability objects | ||
observability_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/observability/get' | ||
|
||
# Allows users to all Observability functionality | ||
observability_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/observability/create' | ||
- 'cluster:admin/opensearch/observability/update' | ||
- 'cluster:admin/opensearch/observability/delete' | ||
- 'cluster:admin/opensearch/observability/get' | ||
|
||
# Allows users to read and download Reports | ||
reports_instances_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/reports/instance/list' | ||
- 'cluster:admin/opendistro/reports/instance/get' | ||
- 'cluster:admin/opendistro/reports/menu/download' | ||
|
||
# Allows users to read and download Reports and Report-definitions | ||
reports_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/reports/definition/get' | ||
- 'cluster:admin/opendistro/reports/definition/list' | ||
- 'cluster:admin/opendistro/reports/instance/list' | ||
- 'cluster:admin/opendistro/reports/instance/get' | ||
- 'cluster:admin/opendistro/reports/menu/download' | ||
|
||
# Allows users to all Reports functionality | ||
reports_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/reports/definition/create' | ||
- 'cluster:admin/opendistro/reports/definition/update' | ||
- 'cluster:admin/opendistro/reports/definition/on_demand' | ||
- 'cluster:admin/opendistro/reports/definition/delete' | ||
- 'cluster:admin/opendistro/reports/definition/get' | ||
- 'cluster:admin/opendistro/reports/definition/list' | ||
- 'cluster:admin/opendistro/reports/instance/list' | ||
- 'cluster:admin/opendistro/reports/instance/get' | ||
- 'cluster:admin/opendistro/reports/menu/download' | ||
|
||
# Allows users to use all asynchronous-search functionality | ||
asynchronous_search_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/asynchronous_search/*' | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices:data/read/search*' | ||
|
||
# Allows users to read stored asynchronous-search results | ||
asynchronous_search_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opendistro/asynchronous_search/get' | ||
|
||
# Allows user to use all index_management actions - ism policies, rollups, transforms | ||
index_management_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- "cluster:admin/opendistro/ism/*" | ||
- "cluster:admin/opendistro/rollup/*" | ||
- "cluster:admin/opendistro/transform/*" | ||
- "cluster:admin/opensearch/notifications/feature/publish" | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices:admin/opensearch/ism/*' | ||
|
||
# Allows users to use all cross cluster replication functionality at leader cluster | ||
cross_cluster_replication_leader_full_access: | ||
reserved: true | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- "indices:admin/plugins/replication/index/setup/validate" | ||
- "indices:data/read/plugins/replication/changes" | ||
- "indices:data/read/plugins/replication/file_chunk" | ||
|
||
# Allows users to use all cross cluster replication functionality at follower cluster | ||
cross_cluster_replication_follower_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- "cluster:admin/plugins/replication/autofollow/update" | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- "indices:admin/plugins/replication/index/setup/validate" | ||
- "indices:data/write/plugins/replication/changes" | ||
- "indices:admin/plugins/replication/index/start" | ||
- "indices:admin/plugins/replication/index/pause" | ||
- "indices:admin/plugins/replication/index/resume" | ||
- "indices:admin/plugins/replication/index/stop" | ||
- "indices:admin/plugins/replication/index/update" | ||
- "indices:admin/plugins/replication/index/status_check" | ||
|
||
# Allow users to read ML stats/models/tasks | ||
ml_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/ml/stats/nodes' | ||
- 'cluster:admin/opensearch/ml/models/get' | ||
- 'cluster:admin/opensearch/ml/models/search' | ||
- 'cluster:admin/opensearch/ml/tasks/get' | ||
- 'cluster:admin/opensearch/ml/tasks/search' | ||
|
||
# Allows users to use all ML functionality | ||
ml_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster_monitor' | ||
- 'cluster:admin/opensearch/ml/*' | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices_monitor' | ||
|
||
# Allows users to use all Notifications functionality | ||
notifications_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/notifications/*' | ||
|
||
# Allows users to read Notifications config/channels | ||
notifications_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/notifications/configs/get' | ||
- 'cluster:admin/opensearch/notifications/features' | ||
- 'cluster:admin/opensearch/notifications/channels/get' | ||
|
||
# Allows users to use all snapshot management functionality | ||
snapshot_management_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/snapshot_management/*' | ||
- 'cluster:admin/opensearch/notifications/feature/publish' | ||
- 'cluster:admin/repository/*' | ||
- 'cluster:admin/snapshot/*' | ||
|
||
# Allows users to see snapshots, repositories, and snapshot management policies | ||
snapshot_management_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/snapshot_management/policy/get' | ||
- 'cluster:admin/opensearch/snapshot_management/policy/search' | ||
- 'cluster:admin/opensearch/snapshot_management/policy/explain' | ||
- 'cluster:admin/repository/get' | ||
- 'cluster:admin/snapshot/get' | ||
|
||
# Allows user to use point in time functionality | ||
point_in_time_full_access: | ||
reserved: true | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'manage_point_in_time' | ||
|
||
# Allows users to see security analytics detectors and others | ||
security_analytics_read_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/securityanalytics/alerts/get' | ||
- 'cluster:admin/opensearch/securityanalytics/detector/get' | ||
- 'cluster:admin/opensearch/securityanalytics/detector/search' | ||
- 'cluster:admin/opensearch/securityanalytics/findings/get' | ||
- 'cluster:admin/opensearch/securityanalytics/mapping/get' | ||
- 'cluster:admin/opensearch/securityanalytics/mapping/view/get' | ||
- 'cluster:admin/opensearch/securityanalytics/rule/get' | ||
- 'cluster:admin/opensearch/securityanalytics/rule/search' | ||
|
||
# Allows users to use all security analytics functionality | ||
security_analytics_full_access: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/securityanalytics/alerts/*' | ||
- 'cluster:admin/opensearch/securityanalytics/detector/*' | ||
- 'cluster:admin/opensearch/securityanalytics/findings/*' | ||
- 'cluster:admin/opensearch/securityanalytics/mapping/*' | ||
- 'cluster:admin/opensearch/securityanalytics/rule/*' | ||
index_permissions: | ||
- index_patterns: | ||
- '*' | ||
allowed_actions: | ||
- 'indices:admin/mapping/put' | ||
- 'indices:admin/mappings/get' | ||
|
||
# Allows users to view and acknowledge alerts | ||
security_analytics_ack_alerts: | ||
reserved: true | ||
cluster_permissions: | ||
- 'cluster:admin/opensearch/securityanalytics/alerts/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.