From 01c35275cc2914e7e81c89b48e77c8900a191a5a Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Thu, 14 Nov 2024 18:54:49 -0500 Subject: [PATCH 1/2] Fix docs for "digitalocean_database_opensearch_config" The description for the "action_auto_create_index_enabled" argument appears to be a copy-paste error. Use a more correct description from: https://www.elastic.co/guide/en/elasticsearch/reference/current/index-management-settings.html --- docs/resources/database_opensearch_config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/database_opensearch_config.md b/docs/resources/database_opensearch_config.md index 4e615f177..a75d12ed9 100644 --- a/docs/resources/database_opensearch_config.md +++ b/docs/resources/database_opensearch_config.md @@ -90,7 +90,7 @@ for additional details on each option. * `indices_queries_cache_size_percentage` - (Optional) Maximum amount of heap used for query cache. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other functionality. Default: `10` * `indices_recovery_max_mb_per_sec` - (Optional) Limits total inbound and outbound recovery traffic for each node, expressed in mb per second. Applies to both peer recoveries as well as snapshot recoveries (i.e., restores from a snapshot). Default: `40` * `indices_recovery_max_concurrent_file_chunks` - (Optional) Maximum number of file chunks sent in parallel for each recovery. Default: `2` -* `action_auto_create_index_enabled` - (Optional) Specifies whether ISM is enabled or not. Default: `true` +* `action_auto_create_index_enabled` - (Optional) Specifies whether to automatically create an index if it doesn’t already exist. Default: `true` * `action_destructive_requires_name` - (Optional) Specifies whether to require explicit index names when deleting indices. * `enable_security_audit` - (Optional) Specifies whether to allow security audit logging. Default: `false` * `thread_pool_search_size` - (Optional) Number of workers in the search operation thread pool. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value. From b4cbb50c6fa870729b46a1cb4f95528d68a87274 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Thu, 21 Nov 2024 14:04:50 -0500 Subject: [PATCH 2/2] Use documentation text from DigitalOcean API docs --- docs/resources/database_opensearch_config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/database_opensearch_config.md b/docs/resources/database_opensearch_config.md index a75d12ed9..57ec45d43 100644 --- a/docs/resources/database_opensearch_config.md +++ b/docs/resources/database_opensearch_config.md @@ -90,7 +90,7 @@ for additional details on each option. * `indices_queries_cache_size_percentage` - (Optional) Maximum amount of heap used for query cache. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other functionality. Default: `10` * `indices_recovery_max_mb_per_sec` - (Optional) Limits total inbound and outbound recovery traffic for each node, expressed in mb per second. Applies to both peer recoveries as well as snapshot recoveries (i.e., restores from a snapshot). Default: `40` * `indices_recovery_max_concurrent_file_chunks` - (Optional) Maximum number of file chunks sent in parallel for each recovery. Default: `2` -* `action_auto_create_index_enabled` - (Optional) Specifies whether to automatically create an index if it doesn’t already exist. Default: `true` +* `action_auto_create_index_enabled` - (Optional) Specifices whether to allow automatic creation of indices. Default: `true` * `action_destructive_requires_name` - (Optional) Specifies whether to require explicit index names when deleting indices. * `enable_security_audit` - (Optional) Specifies whether to allow security audit logging. Default: `false` * `thread_pool_search_size` - (Optional) Number of workers in the search operation thread pool. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.