AWS IAM policy for a Listmonk user to access only one S3 bucket
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:PutObject", | |
"s3:GetObject", | |
"s3:PutBucketPublicAccessBlock", | |
"s3:PutObjectVersionAcl", | |
"s3:PutBucketAcl", | |
"s3:PutBucketPolicy", | |
"s3:PutObjectAcl", | |
"s3:ReplicateObject", | |
"s3:DeleteObjectVersion", | |
"s3:RestoreObject", | |
"s3:DeleteObject" | |
], | |
"Resource": [ | |
"arn:aws:s3:::listmonk-bucket", | |
"arn:aws:s3:::listmonk-bucket/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Part of a tutorial to set up Listmonk on AWS Lightsail.