0

Basically I am reading the docs... https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/elasticsearch_domain

And there is an advanced_options defined as "Key-value string pairs to specify advanced configuration options"

But how do I find out what advanced options are supported... I am specifically trying to configure the max_shards_per_node, but looking to learn to fish here as well.

I did try a couple guesses... and got a ValidationException. So something knows what is allowed...

Also, I can't use phillbaker/eslasticsearch because the cluster is private, and so terraform can't hit the api's to do the configuration.

Jack-of-some
  • 309
  • 3
  • 12

1 Answers1

1

But how do I find out what advanced options are supported...

By looking at the source code, you'll see that there are two advanced options:

  • rest.action.multi.allow_explicit_index
  • override_main_response_version
Paolo
  • 21,270
  • 6
  • 38
  • 69