Created
July 10, 2019 10:05
-
-
Save dreamorosi/0f7636ad2e4e222b2d7afcc7cd58cc96 to your computer and use it in GitHub Desktop.
IAM Policy that gives programmatic access to a list and perform actions on specific sub folder inside a S3 Bucket. Can also add programmatic listing of root and Console access.
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
{ | |
"Sid": "AllowListingOfBucketRoot", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:ListBucket" | |
], | |
"Resource": [ | |
"arn:aws:s3:::{{BUCKET_NAME}}" | |
], | |
"Condition": { | |
"StringEquals": { | |
"s3:prefix": [ | |
"", "{{SUB_FOLDER_NAME}}/*" | |
] | |
} | |
} | |
} |
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
{ | |
"Sid": "AllowUserToSeeBucketListInTheConsole", | |
"Action": [ | |
"s3:ListAllMyBuckets", | |
"s3:GetBucketLocation" | |
], | |
"Effect": "Allow", | |
"Resource": [ | |
"arn:aws:s3:::*" | |
] | |
} |
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": "AllowListingOfSubFolder", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:ListBucket" | |
], | |
"Resource": [ | |
"arn:aws:s3:::{{BUCKET_NAME}}" | |
], | |
"Condition": { | |
"StringLike": { | |
"s3:prefix": [ | |
"{{SUB_FOLDER_NAME}}/*" | |
] | |
} | |
} | |
}, | |
{ | |
"Sid": "AllowSomeActionsInSubFolder", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:PutObject", | |
"s3:GetObject", | |
"s3:DeleteObject" | |
], | |
"Resource": [ | |
"arn:aws:s3:::{{BUCKET_NAME}}/{{SUB_FOLDER_NAME}}/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment