Obviously, I did not want to use the access keys of the Wasabi main user in Veeam. I wanted to create a Sub-User which can only access the Veeam bucket. So this is what I did:
1. Create the bucket as described in the tutorials
2. Create the following policy:
Code: Select all
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::BUCKETNAME",
"arn:aws:s3:::BUCKETNAME/*"
]
}
]
}
The sub-user does not have `s3:ListAllMyBuckets` rights on `arn:aws:s3:::*`. Therefore, when adding the bucket in Veeam, the "Browse"-Button will not work. You have to enter the bucket name manually.