deno-lambda icon indicating copy to clipboard operation
deno-lambda copied to clipboard

Possible to deploy with Pulumi?

Open ProdigySim opened this issue 3 years ago • 1 comments
trafficstars

I'm trying to give this lambda runtime a go on Pulumi, which should theoretically be similar to AWS-CDK but I'm not sure they support all the constructs necessary.

I can write something like:

const denoRuntime = await aws.serverlessrepository.getApplication({
    applicationId: "arn:aws:serverlessrepo:us-east-1:390065572566:applications/deno",
    semanticVersion: "1.16.0",
  });

To get the runtime application, but it's not clear if there's a way to actually create/clone this application and produce a layer ARN.

(Apologies for this pretty open support request, I'm kind of new to all of these tools)

ProdigySim avatar Nov 28 '21 18:11 ProdigySim

It seems pulumi uses terraform so we need to work out how to use that with SAR... 😬 (I wish this was better documented as it seems like this is likely straightforward!)

hayd avatar Nov 29 '21 20:11 hayd