Skip to content

Instantly share code, notes, and snippets.

@IAMNGP
Last active February 14, 2022 06:25
Show Gist options
  • Save IAMNGP/fe0527628c40271ff0d055ec0d1ceab7 to your computer and use it in GitHub Desktop.
Save IAMNGP/fe0527628c40271ff0d055ec0d1ceab7 to your computer and use it in GitHub Desktop.
give s3 bucket secure access to user
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets",
"s3:GetAccountPublicAccessBlock",
"s3:GetBucketPublicAccessBlock",
"s3:GetBucketPolicyStatus",
"s3:GetBucketAcl",
"s3:ListAccessPoints"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::BUCKET-NAME/*"
]
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::BUCKET-NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment