serverless/lib/plugins/aws/deploy/compile/functions/iam-role-lambda-execution-template.json
2016-08-31 23:27:17 +09:00

25 lines
471 B
JSON

{
"IamRoleLambdaExecution": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": [
"lambda.amazonaws.com"
]
},
"Action": [
"sts:AssumeRole"
]
}
]
},
"Path": "/"
}
}
}