I am trying to create a backup of an important S3 bucket. I am planning on using AWS backup. I created a backup plan, a resource assignment, used the default policy. When I look at the job section, I can see that my job failed with the following error: Your backup job failed as AWS Backup does not have permission to describe resource arn:aws:s3:::<my-bucket-name>. Please review your IAM policies to ensure AWS Backup can protect your resources.
I tried to add this policy to the role :
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::my-s3-bucket-arn"
}
]
}
Even with this I still get the exact same error, could I have missed something ? Did anyone met this issue before ?