Serverless AWS Localstack Full Example - CDK, Dynamo, CloudFormation, Serverless

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 26

  • @alperari9496
    @alperari9496 8 месяцев назад +2

    I was looking for localstack deployment using CDK. Thanks a lot!

  • @morohicham2579
    @morohicham2579 Год назад

    Great video ! thanks

  • @rsrini7
    @rsrini7 3 года назад +1

    Thank You Very much. Loved your content.

  • @enriquecordero6163
    @enriquecordero6163 3 года назад +1

    Thanks !! Excellent video

  • @bjupreti
    @bjupreti Год назад

    Very useful video!!

  • @RohanClash
    @RohanClash 9 месяцев назад

    Hello! I noticed the demo for how to communicate with the DynamoDb via the Lambda was not there, could you kindly make a video for that please? Thanks! Overall great video :)

  • @thiagolopessilva
    @thiagolopessilva 3 года назад

    thanks you to share this amazing content.

  • @asterginete3812
    @asterginete3812 3 года назад

    Thank you

  • @josersleal
    @josersleal 2 года назад +1

    where is the schema of the payload documented, please?

  • @suyashkumarsingh4361
    @suyashkumarsingh4361 2 года назад

    on `cdklocal bootstrap` i see this error `The stack named CDKToolkit failed to deploy: CREATE_FAILED (Deployment failed)`

  • @ianaustria8868
    @ianaustria8868 2 года назад

    Does all the services work on localstack on free plan?

  • @at-at-at
    @at-at-at Год назад

    Are you using localstack pro?

  • @abhinavsudam5971
    @abhinavsudam5971 3 года назад

    hey Maurizio ... do you have a list of all the commands you ran? that way it would be easier to replicate .... thank you in advance...

    • @mostlycode
      @mostlycode  3 года назад

      Sorry I didn't, how's I will for my next video 🙂

  • @enriquecordero6163
    @enriquecordero6163 3 года назад

    one question the dynamodb part how i do it with cdk?

    • @mostlycode
      @mostlycode  3 года назад

      Sorry for the late reply, to import dynamo in your project works something like this:
      import * as dynamodb from '@aws-cdk/aws-dynamodb';
      const table = new dynamodb.Table(this, 'TableName', {
      partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING },
      sortKey: { name: 'sk', type: dynamodb.AttributeType.STRING }
      });
      You can read more about it here: docs.aws.amazon.com/cdk/api/latest/docs/aws-dynamodb-readme.html

  • @StephenRayner
    @StephenRayner 3 года назад

    Thoughts on terraform and terraform CDK with localstack?

    • @mostlycode
      @mostlycode  3 года назад

      It's a good idea actually. Maybe I'm going to cover it after I complete the AWS one that I am doing currently.

  • @enriquecordero6163
    @enriquecordero6163 3 года назад +1

    more about cdk !

    • @mostlycode
      @mostlycode  3 года назад +1

      Yes, I'm planning to make more videos about CDK and AWS in general looking at all the aspect of it.
      Currently I'm working on a full course on AWS. Check out this playlist: ruclips.net/video/4Yt5lhbSANk/видео.html (currently in progress)

  • @shashankseethu7812
    @shashankseethu7812 3 года назад

    It's amazing ... But could u pls provide me the commands for redshift ?

    • @mostlycode
      @mostlycode  3 года назад

      Sorry I never worked with redshift.

  • @masiulun0330
    @masiulun0330 2 года назад

    I cannot make the data persistent

    • @AsantePE
      @AsantePE Год назад

      are you saving the volumes?