How do I setup Wasabi Hot Cloud Storage for file acceleration?
Signiant Jet supports Wasabi Hot Cloud Storage buckets as source or destination endpoints, allowing file transfers between on-premises SDCX servers and Wasabi.
To use Wasabi Hot Cloud Storage with file acceleration, you must create a custom policy, generate a role name and trust document, and create a role for Jet to access your buckets using the policy.
Creating a Wasabi Policy
Before you can connect Wasabi Hot Cloud Storage using Jet, you must create a policy to allow access to your storage. To create a policy, you must have access to the Wasabi Console. This policy will be applied to the Role that is used to connect Jet to your Wasabi account.
- In the Wasabi Console, click Policies to open the policy page.
- Click Create Policy.
- Give the policy an easily identifiable name (e.g. SigniantJetAccess) and description.
- Copy and paste the following policy into the Policy Document editor.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "SigniantJetConsoleActions",
"Action": [
"s3:ListAllMyBuckets",
"s3:GetBucketLocation"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::*"
]
},
{
"Sid": "SigniantJetXferEngineActions",
"Effect": "Allow",
"Action": [
"s3:AbortMultipartUpload",
"s3:DeleteObject*",
"s3:GetObject*",
"s3:ListBucket*",
"s3:ListMultipartUploadParts",
"s3:PutObject*",
"s3:GetBucketLocation"
],
"Resource": [
"arn:aws:s3:::*",
"arn:aws:s3:::*/*"
]
}
]
} - Click Create Policy.
- You can now create a storage profile for Wasabi Hot Cloud Storage.
Have more questions? Submit a request