beercity
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Issue backing up to S3I used these permissions. Might give too much access but I am not too concerned about it.
{
“Version”: “2008-10-17”,
“Statement”: [
{
“Sid”: “”,
“Effect”: “Allow”,
“Principal”: {
“AWS”: “arn:aws:iam::YOUR_IAM_USER_ID:user/YOUR_IAM_USER_NAME”
},
“Action”: [
“s3:AbortMultipartUpload”,
“s3:GetObjectAcl”,
“s3:ListBucket”,
“s3:DeleteObject”,
“s3:GetObject”,
“s3:PutObjectAcl”,
“s3:ListBucketMultipartUploads”,
“s3:GetBucketLocation”,
“s3:PutObject”
],
“Resource”: [
“arn:aws:s3:::YOUR_BUCKET_NAME”,
“arn:aws:s3:::YOUR_BUCKET_NAME/*”
]
}
]
}Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Issue backing up to S3I fixed this by fixing my permissions. I realized it was not deleting the old backups, the failures were likely because it did not have permissions to list the contents or delete items. I updated the permissions and all is good now.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Issue backing up to S3For reference here is the IAM profile I am using for access for this plugin
{
“Version”: “2012-10-17”,
“Statement”: [
{
“Sid”: “Stmt1457967512000”,
“Effect”: “Allow”,
“Action”: [
“s3:ListAllMyBuckets”
],
“Resource”: [
“*”
]
},
{
“Effect”: “Allow”,
“Action”: [
“s3:GetBucketLocation”,
“s3:ListBucketMultipartUploads”,
“s3:ListBucket”
],
“Resource”: [
“arn:aws:s3:::rfl-backups”
]
},
{
“Sid”: “Stmt1457967512001”,
“Effect”: “Allow”,
“Action”: [
“s3:PutObject”,
“s3:ListMultipartUploadParts”,
“s3:Get*”,
“s3:AbortMultipartUpload”
],
“Resource”: [
“arn:aws:s3:::rfl-backups/Ready-For-Life*”,
“arn:aws:s3:::rfl-backups/Ready-For-Life/*”
]
}
]
}