Frank

Results 226 comments of Frank

Hey @liam-jones-lucout, I like the pattern you suggested. Essentially, instead of building all stacks up front, build each stack right before deploying, so it has access to stack outputs from...

Yeah it will. Note that ssm.getParameter() is just a normal AWS SDK call.

Hey @davideicardi by externally defined Lambda, is the Lambda function created outside of the SST app, or is it created in another Stack within the same app?

Looks good! We are working on something currently that will simply this https://github.com/serverless-stack/serverless-stack/issues/1078 I will share a code snippet once we've done that.

@riccardogiorato are you looking for API invoking a Step Function directly, or being able to live debug a Step Function locally? You can already do the latter by passing `sst.Function`...

Hey @mostthingsweb, I shared a snippet in Slack. Let me repost it here: I found this [helper construct](https://github.com/aws-samples/cdk-alexa-skill/blob/main/src/skill.ts) from AWS. Save it to ur local and use it like this:...

@mostthingsweb thanks for updating it here. Btw, the above code allows the skill to invoke the Lambda, but how are you telling the skill which Lambda to invoke? I'm not...

Hi @aisflat439, give this a try. This override the S3 bucket and the CloudFront distribution based on what you shared above: ```js const site = new sst.StaticSite(this, "GatsbySite", { ...,...

@aisflat439 yeah, actually that's what I meant in the previous comment to comment out the two `throw` blocks. Like I mentioned on Slack, if you can put together a sample...