Skip to content

Instantly share code, notes, and snippets.

@bwps
Last active November 26, 2018 02:46
Show Gist options
  • Save bwps/b428afe67961bed2dbf34767ba6846ac to your computer and use it in GitHub Desktop.
Save bwps/b428afe67961bed2dbf34767ba6846ac to your computer and use it in GitHub Desktop.
policy_for_full_permission_to_specific_bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "POLICYPDAS3",
"Effect": "Allow",
"Action": [
"s3:List*",
"s3:Get*",
"s3:Put*",
"s3:Delete*"
],
"Resource": [
"arn:aws:s3:::bucket_name/*",
"arn:aws:s3:::bucket_name"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment