remote_certificate编辑

这应该是一个指向 CA 证书的文件路径,或者留空。

actions:
  1:
    description: "Reindex index1 into index2"
    action: reindex
    options:
      wait_interval: 9
      max_wait: -1
      remote_certificate: /path/to/my/ca.cert
      remote_client_cert: /path/to/my/client.cert
      remote_client_key: /path/to/my/client.key
      request_body:
        source:
          remote:
            host: https://otherhost:9200
          index: index1
        dest:
          index: index2
    filters:
    - filtertype: none

此选项仅在执行远程重新索引操作时由 重新索引操作 使用。

此设置允许使用指定的 CA 证书文件来验证 Elasticsearch 使用的 SSL 证书。

没有默认值。