Skip to content

Instantly share code, notes, and snippets.

@lpsm-dev
Created May 30, 2022 16:56
Show Gist options
  • Save lpsm-dev/9a13d60789878ce0db4ac68783c63bd2 to your computer and use it in GitHub Desktop.
Save lpsm-dev/9a13d60789878ce0db4ac68783c63bd2 to your computer and use it in GitHub Desktop.
[AWS] - KMS Policy usage
{
"Sid": "Allow use of the key",
"Action": [
"kms:Decrypt",
"kms:GenerateDataKey"
],
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::111122223333:user/Jane"
},
"Resource": "*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment