Last active
July 10, 2019 10:26
-
-
Save dreamorosi/5eba16459d217ff98539e0ad6090681a to your computer and use it in GitHub Desktop.
IAM Policy that gives programmatic access to list and perform actions on specific sub folder inside a S3 Bucket. All events must come from inside a specific VPC. 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}}/*" | |
], | |
"ForAllValues:StringEquals": { | |
"aws:SourceVpc": "{{VPC_ID}}" | |
} | |
} | |
} | |
} |
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}}/*" | |
], | |
"ForAllValues:StringEquals": { | |
"aws:SourceVpc": "{{VPC_ID}}" | |
} | |
} | |
} | |
}, | |
{ | |
"Sid": "AllowSomeActionsInSubFolder", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:PutObject", | |
"s3:GetObject", | |
"s3:DeleteObject" | |
], | |
"Resource": [ | |
"arn:aws:s3:::{{BUCKET_NAME}}/{{SUB_FOLDER_NAME}}/*" | |
], | |
"Condition": { | |
"StringEquals": { | |
"aws:SourceVpc": "{{VPC_ID}}" | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment