gpt4 book ai didi

elasticsearch - Terraform:在 ElasticSearch 中设置 max_buckets

转载 作者:行者123 更新时间:2023-12-03 01:15:02 24 4
gpt4 key购买 nike

我需要在 elasticsearch aws 中设置 max_buckets。到目前为止,我已经尝试在模块 block 中使用 max_buckets 键,但这不起作用。下一次尝试是使用 advanced_options

module "elasticsearch" {
es_version = "6.3"
advanced_options = {
"search.max_buckets" = "123456"
}
但这会导致:
Error: Unsupported argument

on elasticsearch.tf line 14, in module "elasticsearch":
14: advanced_options = {
如何设置 max_buckets?

最佳答案

你用的是哪个模块? aws_elasticsearch_domain资源具有 advanced_options争论。

advanced_options - Key-value string pairs to specify advanced configuration options. Note that the values for these configuration options must be strings (wrapped in quotes).

resource "aws_elasticsearch_domain" "es" {
domain_name = "${var.domain}"
elasticsearch_version = "6.3"

advanced_options = {
"rest.action.multi.allow_explicit_index" = "true"
}
}
您能否提供有关您的实现的更多详细信息?在您的示例中, search.max_buckets 似乎缺少双引号。如果您使用的是模块,我认为您应该通过 source争论。

关于elasticsearch - Terraform:在 ElasticSearch 中设置 max_buckets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62956340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com