sparse-intern-71089
04/13/2022, 3:48 PMvictorious-church-57397
04/13/2022, 3:49 PMvictorious-church-57397
04/13/2022, 3:49 PMvictorious-church-57397
04/13/2022, 3:51 PMnew lambda.Function(
'lambda-function-example',
{
code: new pulumi.asset.FileArchive('../target/function.zip'),
runtime: 'provided.al2',
handler: 'handler',
role: functionrole.arn,
timeout: 30,
memorySize: 256,
environment: {
variables: {
a: b,
},
},
},
{
deleteBeforeReplace: true,
},
will create a function with the hash/uid at the endvictorious-church-57397
04/13/2022, 3:51 PMnew lambda.Function(
'lambda-function-example',
{
name: 'lambda-function-example'
code: new pulumi.asset.FileArchive('../target/function.zip'),
runtime: 'provided.al2',
handler: 'handler',
role: functionrole.arn,
timeout: 30,
memorySize: 256,
environment: {
variables: {
a: b,
},
},
},
{
deleteBeforeReplace: true,
},
victorious-church-57397
04/13/2022, 3:51 PMgreen-crowd-42127
04/13/2022, 3:53 PMvictorious-church-57397
04/13/2022, 4:00 PM