In the AWS Console, I created a cluster, task definition and repository for deploying my docker image. Then I created an IAM user and tried to list the clusters I have by calling
aws ecs describe-clusters
It returns me
{
"clusters": [],
"failures": [
{
"reason": "MISSING",
"arn": "arn:aws:ecs:us-east-1:XXXXXXXXXXX:cluster/default"
}
]
}
Listing clusters also returns me empty array,
aws ecs list-clusters
Any help on this would be appreciated.