Reputation: 8122
When trying to restore File system from AWS Backup I'm getting the following error:
Access Denied
Insufficient privileges to perform this action. Please consult with the account administrator for necessary permissions.
This is weird since I have AdministratorAccess
under my AWS user:
The file system created by running the CLI command:
aws efs create-file-system
In addition, I followed EKSWorkshop to create the EFS.
Any help will be much appreciated.
Upvotes: 11
Views: 8609
Reputation: 186
If you change the policy on the backup vault screen you can start the restore.
It's deny by default.
For example, it works:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": [
"backup:DeleteBackupVault",
"backup:DeleteBackupVaultAccessPolicy",
"backup:DeleteRecoveryPoint",
"backup:StartCopyJob",
"backup:StartRestoreJob",
"backup:UpdateRecoveryPointLifecycle"
],
"Resource": "*"
}
]
}
Upvotes: 17