Skip to content

Commit

Permalink
Fix OpenSearch should disable security plugins by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysm committed Sep 20, 2024
1 parent 3c3f5ba commit bfc7d7c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/Services/OpenSearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ class OpenSearch extends BaseService
protected static $category = Category::SEARCH;

protected $organization = 'opensearchproject';

protected $imageName = 'opensearch';

protected $defaultPort = 9200;

protected $prompts = [
[
'shortname' => 'volume',
Expand All @@ -23,7 +26,7 @@ class OpenSearch extends BaseService
[
'shortname' => 'disable_security',
'prompt' => 'Disable security plugin (true or false)?',
'default' => 'false',
'default' => 'true',
],
];

Expand Down

0 comments on commit bfc7d7c

Please sign in to comment.