Operating system
Windows
Joplin version
3.2.13
Desktop version info
Win10
Sync target
S3
Editor
Markdown Editor
What issue do you have?
I'm a new user and need some help configuring the permissions for my S3 bucket. I'm brand new to AWS. I've followed the instructions on S3 synchronisation | Joplin. I'm up to the part that says "To add a Bucket Policy from the AWS S3 Web Console, navigate to the Permissions tab. Temporarily disable Block all public access to edit the Bucket policy, something along the lines of:". See attached screenshot. I see how to disable the "block all public access". My question is how / where do I insert my code?
{
"Version": "2025-03-31",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation",
"s3:GetObject",
"s3:DeleteObject",
"s3:DeleteObjectVersion",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::mybucket",
"arn:aws:s3:::mybucket/*"
]
}
]
}
Thanks!