Skip to content

Commit

Permalink
Make OpenSearch Security enabled the default
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Jun 11, 2024
1 parent 56d7765 commit c98e156
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions radis/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@

# OpenSearch
OPENSEARCH_ENABLED = env.bool("OPENSEARCH_ENABLED", default=True) # type: ignore
OPENSEARCH_SECURITY_DISABLED = False
OPENSEARCH_HOST = env.str("OPENSEARCH_HOST", default="localhost") # type: ignore
OPENSEARCH_PORT = env.int("OPENSEARCH_PORT", default=9200) # type: ignore
OPENSEARCH_PASSWORD = env.str("OPENSEARCH_INITIAL_ADMIN_PASSWORD", default="admin") # type: ignore
Expand Down

0 comments on commit c98e156

Please sign in to comment.