Access S3 buckets with RClone
Create AWS Access key
Create and attach AWS policy
Grant access to multiple S3 buckets
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:DeleteObject",
"s3:GetObject",
"s3:PutObject",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::BUCKET_NAME_1/*",
"arn:aws:s3:::BUCKET_NAME_1",
"arn:aws:s3:::BUCKET_NAME_2/*",
"arn:aws:s3:::BUCKET_NAME_2"
]
},
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
}
]
}Grant access to single S3 bucket
Enable RClone add-on and create config file
Set up Nuvolos secrets
Mount a single S3 bucket
Last updated
Was this helpful?