2024-06-20 16:24:10 +08:00
|
|
|
from typing import Optional
|
|
|
|
|
2024-07-07 12:18:15 +08:00
|
|
|
from pydantic import Field, PositiveInt
|
|
|
|
from pydantic_settings import BaseSettings
|
2024-06-20 16:24:10 +08:00
|
|
|
|
|
|
|
|
2024-07-07 12:18:15 +08:00
|
|
|
class OpenSearchConfig(BaseSettings):
|
2024-06-20 16:24:10 +08:00
|
|
|
"""
|
2024-09-22 13:38:41 +08:00
|
|
|
Configuration settings for OpenSearch
|
2024-06-20 16:24:10 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
OPENSEARCH_HOST: Optional[str] = Field(
|
2024-09-22 13:38:41 +08:00
|
|
|
description="Hostname or IP address of the OpenSearch server (e.g., 'localhost' or 'opensearch.example.com')",
|
2024-06-20 16:24:10 +08:00
|
|
|
default=None,
|
|
|
|
)
|
|
|
|
|
|
|
|
OPENSEARCH_PORT: PositiveInt = Field(
|
2024-09-22 13:38:41 +08:00
|
|
|
description="Port number on which the OpenSearch server is listening (default is 9200)",
|
2024-06-20 16:24:10 +08:00
|
|
|
default=9200,
|
|
|
|
)
|
|
|
|
|
|
|
|
OPENSEARCH_USER: Optional[str] = Field(
|
2024-09-22 13:38:41 +08:00
|
|
|
description="Username for authenticating with OpenSearch",
|
2024-06-20 16:24:10 +08:00
|
|
|
default=None,
|
|
|
|
)
|
|
|
|
|
|
|
|
OPENSEARCH_PASSWORD: Optional[str] = Field(
|
2024-09-22 13:38:41 +08:00
|
|
|
description="Password for authenticating with OpenSearch",
|
2024-06-20 16:24:10 +08:00
|
|
|
default=None,
|
|
|
|
)
|
|
|
|
|
|
|
|
OPENSEARCH_SECURE: bool = Field(
|
2024-09-22 13:38:41 +08:00
|
|
|
description="Whether to use SSL/TLS encrypted connection for OpenSearch (True for HTTPS, False for HTTP)",
|
2024-06-20 16:24:10 +08:00
|
|
|
default=False,
|
|
|
|
)
|