Creating EC2 backup and getting "Access denied: Insufficient privileges..." error

0

Dear all, Can anyone please help this error? Thanks in advance!

**Status: ** A user with PowerUserAccess is trying to create a backup plan for EC2 using a custom role( which has the following permission policies: AWSBackupServiceRolePolicyForBackup & AWSBackupServiceRolePolicyForRestores)

**Error message: ** Access denied: Insufficient to perform this action. Please consult with the account administrator for necessary permissions.

Joseph
feita há 3 meses266 visualizações
1 Resposta
0

Hello.

"PowerUserAccess" does not have permission to attach IAM roles, so service roles cannot be set when allocating resources with AWS Backup.
So, please set the following IAM policy for the IAM user and then try setting up AWS Backup.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "iam:PassRole"
            ],
            "Resource": [
                "*"
            ],
            "Effect": "Allow"
        }
    ]
}
profile picture
ESPECIALISTA
respondido há 3 meses
profile pictureAWS
ESPECIALISTA
avaliado há 3 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas