remote_client_key

编辑

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

这应该是一个客户端密钥(私钥)的文件路径,或者留空。

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

允许使用指定的 SSL 客户端密钥文件来验证 Elasticsearch 的身份。如果使用client_cert并且指定的文件也不包含密钥,请使用client_key指定包含 SSL 密钥的文件。密钥文件必须是 PEM 格式的未加密密钥。