Skip to content

Instantly share code, notes, and snippets.

@bjesuiter
Created June 5, 2022 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjesuiter/2afb103be8f358be7ff7066fe7f383af to your computer and use it in GitHub Desktop.
Save bjesuiter/2afb103be8f358be7ff7066fe7f383af to your computer and use it in GitHub Desktop.
AWS Policy Access to Single S3 Bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:GetBucketLocation", "s3:ListAllMyBuckets"],
"Resource": "arn:aws:s3:::*"
},
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "s3:*",
"Resource": ["arn:aws:s3:::nextcloud.avil.io-restic", "arn:aws:s3:::nextcloud.avil.io-restic/*"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment