I'm trying to set up ElasticSearch endpoint in DMS but no matter what I try when I test the connection I get this generic error:
Test Endpoint failed: Application-Status: 1020912, Application-Message: Endpoint initialization failed.
I've created a role trusted by dms.amazonaws.com:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Principal": {
"Service": "dms.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
and given it every permission:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"*"
],
"Resource": "*"
}
]
}
I have also configured my Elasticsearch domain to be public and I can connect to it and access Kibana.
I followed along with this 'tutorial' but now I'm stuck as to where to look for logs/potential issues with Elastic.