Created
March 22, 2019 21:58
-
-
Save burck1/d1e400c4da4683785d910fcda2c009c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"kms:Decrypt" | |
], | |
"Resource": "arn:aws:kms:us-east-1:xxxxxxxxxxx:alias/aws/ssm" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"ssm:DescribeParameters" | |
], | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"ssm:GetParameter*" | |
], | |
"Resource": [ | |
"arn:aws:ssm:us-east-1:xxxxxxxxxxx:parameter/choco/*", | |
"arn:aws:ssm:us-east-1:xxxxxxxxxxx:parameter/octo/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment