Skip to content

Instantly share code, notes, and snippets.

@nixjobin
Created June 15, 2016 21:11
Show Gist options
  • Save nixjobin/49158ae633f7d8e2f732296e511491c1 to your computer and use it in GitHub Desktop.
Save nixjobin/49158ae633f7d8e2f732296e511491c1 to your computer and use it in GitHub Desktop.
Liferay S3 Bucket Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::jobnix-bucket",
"arn:aws:s3:::jobnix-bucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment