Skip to content

Commit

Permalink
Merge pull request #90 from Vlaaaaaaad/patch-1
Browse files Browse the repository at this point in the history
Fix IAM Permissions example
  • Loading branch information
hypnoglow authored Jan 9, 2020
2 parents f571958 + 2df7959 commit 95e8698
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,25 @@ for a CI that builds and pushes charts to your repository.
"Version": "2012-10-17",
"Statement": [
{
"Sid": "files",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObjectAcl",
"s3:PutObject",
"s3:GetObjectAcl",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::bucket-name",
"arn:aws:s3:::bucket-name/*"
"arn:aws:s3:::bucket-name/repository-name/*",
"arn:aws:s3:::bucket-name/repository-name"
]
},
{
"Sid": "bucket",
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::bucket-name"
}
]
}
Expand Down

0 comments on commit 95e8698

Please sign in to comment.