Skip to content

Instantly share code, notes, and snippets.

@ensean
Created April 24, 2024 08:53
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 ensean/a2295885c6f63d37bfbbd3e55aaac36a to your computer and use it in GitHub Desktop.
Save ensean/a2295885c6f63d37bfbbd3e55aaac36a to your computer and use it in GitHub Desktop.
iam policy for s3
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "s3:*",
"Resource": "*"
},
{
"Effect": "Deny",
"Action": [
"s3:Delete*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment