Docs: reindex.remote.whitelist takes and array and not comma separated list

According to this piece of documentation, I need to configure reindex.remote.whitelist to allow reindexing from a remote elastic cluster.
It states that the value should be a string with comma separated list of allowed hosts. Here is the example that is provided:

reindex.remote.whitelist: "otherhost:9200, another:9200, 127.0.10.*:9200, localhost:*"

This however results in an error message when trying to save the configuration in elastic cloud:

I found that providing an array of hosts works:

reindex.remote.whitelist:
  - "localhost:*"
  - "some.other.cluster.local:9243"

Is this an issue with documentation or am I missing something? Is this forum the right place to report this?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.