Skip to content

Instantly share code, notes, and snippets.

@SaschaMoellering
Last active September 7, 2015 07:37
Show Gist options
  • Save SaschaMoellering/a971fb73626f41ad80f4 to your computer and use it in GitHub Desktop.
Save SaschaMoellering/a971fb73626f41ad80f4 to your computer and use it in GitHub Desktop.
IAM Role Policy for Kinesis/CloudWatch access
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1431942256000",
"Effect": "Allow",
"Action": [
"elasticache:*"
],
"Resource": [
"*"
]
},
{
"Sid": "Stmt1431942269000",
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": [
"*"
]
},
{
"Sid": "Stmt1431942284000",
"Effect": "Allow",
"Action": [
"cloudwatch:*"
],
"Resource": [
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment