remote_aws_keyedit

This option is only used by the Reindex action when performing a remote reindex operation.

This feature allows connection to AWS using IAM credentials, but Curator 5 does not currently work with AWS.

This setting will not work unless the requests-aws4auth Python module has been manually installed first.

This should be an AWS IAM access key, or left empty.

actions:
  1:
    description: "Reindex index1 into index2"
    action: reindex
    options:
      wait_interval: 9
      max_wait: -1
      remote_aws_key: AWS_KEY
      remote_aws_secret_key: AWS_SECRET_KEY
      remote_aws_region: us-east-1
      request_body:
        source:
          remote:
            host: https://otherhost:9200
          index: index1
        dest:
          index: index2
    filters:
    - filtertype: none

You must set your hosts to the proper hostname with port. It may not work setting port and hosts to only a host name due to the different connection module used.