Hello I am working with the docker elkstack, and have installed the S3 repository plugin. When I try to create a repo via the command
curl -X PUT "localhost:9200/_snapshot/my_s3_repository" -H 'Content-Type: application/json' -d'
{
"type": "s3",
"settings": {
"bucket": "datastore-name",
"region": "us-west"
}
}
'
I get a response {"acknowledged":true} but the repo never gets created. I was able to upload a file to the s3 bucket via the aws cli on the machine.
Does the s3 repository plugin write any logs? I checked the logs in /var/log/elasticsearch and did not see anything logged related to aws or s3.