Skip to content

Instantly share code, notes, and snippets.

@alexandraj777
Last active October 26, 2017 05:05
Show Gist options
  • Save alexandraj777/214d32261f8131b52c537d429e242fe7 to your computer and use it in GitHub Desktop.
Save alexandraj777/214d32261f8131b52c537d429e242fe7 to your computer and use it in GitHub Desktop.
AWS Lambda basic role policy document. Source: https://alestic.com/2014/11/aws-lambda-cli/
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment