Skip to content

Instantly share code, notes, and snippets.

@SaschaMoellering
Created September 7, 2015 07:42
Show Gist options
  • Save SaschaMoellering/b14540b144263e5fea4b to your computer and use it in GitHub Desktop.
Save SaschaMoellering/b14540b144263e5fea4b to your computer and use it in GitHub Desktop.
IAM Role Policy for Kinesis access from Lambda
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"kinesis:GetRecords",
"kinesis:GetShardIterator",
"kinesis:DescribeStream",
"kinesis:ListStreams",
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment