Hi all, I’m having a weird issue using AWS RDS proxy with an Aurora MySQL cluster, where, if I check the status of the targets, I’m getting an AVAILABLE state in of of the instances but the other is unhealthy, this is the output of aws rds describe-db-proxy-targets
"Targets": [
{
"Endpoint": "endpoint-instance-0.region.rds.amazonaws.com",
"TrackedClusterId": "db-cluster",
"RdsResourceId": "db-instance-0",
"Port": 3306,
"Type": "RDS_INSTANCE",
"Role": "READ_WRITE",
"TargetHealth": {
"State": "AVAILABLE"
}
},
{
"Endpoint": "endpoint-instance-1.region.rds.amazonaws.com",
"TrackedClusterId": "db-cluster",
"RdsResourceId": "db-instance-1",
"Port": 3306,
"Type": "RDS_INSTANCE",
"Role": "UNKNOWN",
"TargetHealth": {
"State": "endpoint-instance-0.region.rds.amazonaws.com",
"Reason": "UNREACHABLE",
"Description": "Timeout connecting to the database"
}
},
{
"RdsResourceId": "db-cluster",
"Port": 3306,
"Type": "TRACKED_CLUSTER"
}
]
}```
And this is what I see of the instance logs:
```[Server] Access denied for user 'rdsadmin'@'localhost' (using password: YES) (sql_authentication.cc:1412)```