No handler was ready to authenticate. 1 handlers were checked. ['HmacAuthV3Handler'] Check your credentials
--Work on EC2 --The above error in ECS (Fargate) --IAM Role is set correctly (Admin Role is not resolved)
This error itself can occur due to other causes such as Role misconfiguration (which took a long time to investigate ...), but it can occur if the library version is old.
Specifically, if django-ses
is less than 1.0 (0.X), the authentication library boto is out of date (must be boto3 instead of boto) and can't handle ECS Roles well. An error will occur.
If you get an authentication error in the ECS environment with other libraries as well, be suspicious.
Recommended Posts