Skip to content

Instantly share code, notes, and snippets.

@nicola88
Last active July 26, 2022 01:37
Show Gist options
  • Save nicola88/ac5b5d9f69b3bb7496cd46749db7f1fa to your computer and use it in GitHub Desktop.
Save nicola88/ac5b5d9f69b3bb7496cd46749db7f1fa to your computer and use it in GitHub Desktop.
S3 bucket policy for Nextcloud
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::cloud.example.com",
"arn:aws:s3:::cloud.example.com/*"
]
}
]
}
@cinghaman
Copy link

Got error about principal missing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment