# OpenSearch Development Configuration opensearch: cluster: name: "storycove-dev" initial_master_nodes: ["opensearch-node"] # Development settings - single node, minimal resources indices: default_settings: number_of_shards: 1 number_of_replicas: 0 refresh_interval: "1s" # Security settings for development security: ssl_verification: false trust_all_certificates: true # Connection settings connection: timeout: "30s" socket_timeout: "60s" max_connections_per_route: 10 max_connections_total: 30 # Index management index_management: auto_create_templates: true template_patterns: stories: "stories_*" authors: "authors_*" collections: "collections_*"