Does anyone know the minimum permissions required on the bucket for S3 backup? It looks like everyone backing up to S3 using duplicity just gives the user full bucket access but if anyone knows just the bare minimum that would be much appreciated.
Here is the current policy I have that still fails backup.
{
"Version": "2012-10-17",
"Id": "Policy1517170247260",
"Statement": [
{
"Sid": "Stmt1517170242888",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::XXXXX:user/XXXXX"
},
"Action": [
"s3:Put*",
"s3:List*"
],
"Resource": [
"arn:aws:s3:::XXXXXX",
"arn:aws:s3:::XXXXXX/*"
]
}
]
}