Skip to content

Instantly share code, notes, and snippets.

@jrasanen
Last active May 17, 2018 08:42
Show Gist options
  • Save jrasanen/998ecbb75174354f05e6499cefd065f9 to your computer and use it in GitHub Desktop.
Save jrasanen/998ecbb75174354f05e6499cefd065f9 to your computer and use it in GitHub Desktop.
AWS kms inline policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"kms:Decrypt",
"kms:Encrypt",
"kms:GenerateDataKey",
"kms:ReEncryptTo",
"kms:GenerateDataKeyWithoutPlaintext",
"kms:DescribeKey",
"kms:ReEncryptFrom"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment