Skip to content

Instantly share code, notes, and snippets.

@okram999
Last active April 12, 2019 14:13
Show Gist options
  • Save okram999/0a21fc2ffc12a65af8caecf9bd55cbf6 to your computer and use it in GitHub Desktop.
Save okram999/0a21fc2ffc12a65af8caecf9bd55cbf6 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:Describe*",
"secretsmanager:Get*",
"secretsmanager:List*"
],
"Resource": "*",
"Condition": { "StringEquals": { "secretsmanager:ResourceTag/APP": "devtest", "secretsmanager:ResourceTag/ENV": "Non-Prod" } }
},
{
"Effect": "Allow",
"Action": [
"s3:CreateBucket",
"s3:DeleteBucket",
"s3:ListBucket",
"s3:ListBucketVersions",
"s3:GetObject",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::devtest-nonprod-*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment