Skip to content

Commit

Permalink
Update integ.runtime.inlinecode.expected.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Giedrius Kaskonas committed Aug 24, 2021
1 parent 1781cc5 commit e981d26
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,56 @@
"DependsOn": [
"PYTHON38ServiceRole3EA86BBE"
]
},
"NODEJS14XServiceRole4523ECDB": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
}
}
],
"Version": "2012-10-17"
},
"ManagedPolicyArns": [
{
"Fn::Join": [
"",
[
"arn:",
{
"Ref": "AWS::Partition"
},
":iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
]
]
}
]
}
},
"NODEJS14X930214A3": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Code": {
"ZipFile": "exports.handler = async function(event) { return \"success\" }"
},
"Role": {
"Fn::GetAtt": [
"NODEJS14XServiceRole4523ECDB",
"Arn"
]
},
"Handler": "index.handler",
"Runtime": "nodejs14.x"
},
"DependsOn": [
"NODEJS14XServiceRole4523ECDB"
]
}
},
"Outputs": {
Expand Down Expand Up @@ -331,6 +381,11 @@
"Value": {
"Ref": "PYTHON38A180AE47"
}
},
"NODEJS14XfunctionName": {
"Value": {
"Ref": "NODEJS14X930214A3"
}
}
}
}

0 comments on commit e981d26

Please sign in to comment.