Skip to content

Instantly share code, notes, and snippets.

@joemiller
Created June 13, 2011 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemiller/1023357 to your computer and use it in GitHub Desktop.
Save joemiller/1023357 to your computer and use it in GitHub Desktop.
iam_user_policy = """
{
"Statement": [
{"Effect": "Allow",
"Action": ["s3:List*","s3:Put*","s3:Get*","s3:DeleteObject*"],
"Resource": ["arn:aws:s3:::%s","arn:aws:s3:::%s/*"]
},
{"Effect": "Deny",
"Action": "*",
"NotResource": ["arn:aws:s3:::%s","arn:aws:s3:::%s/*"]
}
]
}""" % (bucket_name, bucket_name, bucket_name, bucket_name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment