Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Fixed Lambda Permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
ea-coder committed Feb 5, 2020
1 parent 5de9861 commit 4608920
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions reinvent-2019/sign-and-speak/CloudFormation/cf.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,28 +93,7 @@
]
}
}
},
"S3InvokeGridLambdaPermission": {
"Type": "AWS::Lambda::Permission",
"DependsOn" : ["videotogridlambda","S3Bucket"],
"Properties": {
"Action": "lambda:InvokeFunction",
"FunctionName": { "Ref": "videotogridlambda" },
"Principal": "s3.amazonaws.com",
"SourceArn": {"Fn::GetAtt": [ "S3Bucket", "Arn" ] }
}
},
"S3InvokeInferSignLambdaPermission": {
"Type": "AWS::Lambda::Permission",
"DependsOn" : ["infersignlambda","S3Bucket"],
"Properties": {
"Action": "lambda:InvokeFunction",
"FunctionName": { "Ref": "infersignlambda" },
"Principal": "s3.amazonaws.com",
"SourceArn": {"Fn::GetAtt": [ "S3Bucket", "Arn" ] }
}
},

},
"IAMS2SExecutionRole" : {
"Type" : "AWS::IAM::Role",
"Properties" : {
Expand Down

0 comments on commit 4608920

Please sign in to comment.