Wasabi Permission Requirements for Remote Storage
### Scope
This article will show you how to configure the Wasabi permissions requirements necessary
for Remote Storage.
Requirements
- Manager Portal Access
- Wasabi Access
- 1Create a SUB-User in Wasabi.
- 2Go to Policies>Create Policy via the main dashboard. This is NOT a policy inside the
bucket properties. Make note of the policy name because you will need it later.
- 1Below is the coding that will give you LIST access to the entire account, give you full
access to the bucket you specify, and prevent access to anything else outside that
bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListMy",
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Sid": "AllowAll-S3ActionsToOwnBucket",
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::bucketname",
"arn:aws:s3:::bucketname/*"
]
}
]
}
- 1After that, click on Users>username>Policies. Find the policy that you just created and
add it the user's account. 5. Here is an example of the policy directly inside the bucket properties:
{
"Id": "Policy1730147711484",
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1730147699754",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::100000999999:user/useraccountname"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::bucketname/*"
}
]
}
- 1To continue setting up Remote Storage for Call Recordings, please visit this doc
Related Articles
Was this article helpful?