Cloud Infra Architecture (AWS)/AWS Build

[AWS] AWS Backup 복구가 안될 때 (You are not authorized to perform this operation. Please consult the permissions associated with your AWS Backup role)

seongduck 2024. 6. 12. 01:00

AWS Backup으로 백업을 한 뒤, 복구할 때 다음과 같은 에러가 뜬다.

"You are not authorized to perform this operation. Please consult the permissions associated with your AWS Backup role"

 

필자는 AWS Backup 중 "백업 볼트 생성"에서 "암호화 키"를 기본값으로 했을 때 발생했다.


해결방법

  1. AWS Backup 백업 볼트를 생성하면서 Default로 만들어진 IAM Policy에 인라인 정책 추가
1) IAM 검색
2) "역할" - "AWSBackupDefaultServiceRole" 선택
3) "권한" - "권한 추가" - "인라인 정책 생성"
4) "Json"
"""
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": "iam:PassRole",
            "Resource": "arn:aws:iam::본인계정ID:role/*",
            "Effect": "Allow"
        }
    ]
}
"""

추가