mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
28 lines
468 B
JSON
28 lines
468 B
JSON
{
|
|
"Type": "AWS::IAM::Policy",
|
|
"DependsOn": [
|
|
"IamRoleLambdaExecution"
|
|
],
|
|
"Properties": {
|
|
"PolicyName": "",
|
|
"PolicyDocument": {
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Effect": "Allow",
|
|
"Action": [
|
|
"logs:CreateLogStream",
|
|
"logs:PutLogEvents"
|
|
],
|
|
"Resource": []
|
|
}
|
|
]
|
|
},
|
|
"Roles": [
|
|
{
|
|
"Ref": "[TO BE REPLACED]"
|
|
}
|
|
]
|
|
}
|
|
}
|