Super Backup Amazon S3 access settings
You can make a secure copy to your Amazon S3 account with the Super Backup function. You can choose between two methods, the first is the simpler one, but the second one is more secure. Therefore, we recommend the secure, more advanced way.
Simple way, but less secure
Less secure, because all users in the account will have access to it
Bucket permission
- add account: info@shardimage.com
, Write Objects
permission
Advanced way
only the user shardimage-backup
will have access to it
- Bucket permission
- Bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Shardimage Backup for XXXXXX cloud",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::366825731580:user/shardimage-backup"
},
"Action": [
"s3:PutObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::<BUCKET>/*"
}
]
}
Specific sample
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Shardimage Backup for A37hfwE cloud",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::366825731580:user/shardimage-backup"
},
"Action": [
"s3:PutObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::shardimage-backup/*"
}
]
}