skip to Main Content

CloudFormation has a hard limit of 500 resources in a aws service.bu i have using 507 resources that error will be occurs so how to overcome the error. i want to be increased the limit using serverless node.js @node.js,@aws,@serverless,@dynamodb.

  1. I want to increase the hard limit as 500 resources but My resources as 507 its have been above the limit.

  2. I’m using serverless node.js at aws service as dynamodb,SNS,S3 Bucket,SES email to the services used into the my project.

  3. Its cross the limit so what i do if anyone knows the fix this issues.Please help me to answer this issues.

2

Answers


  1. AWS documentation already has solution for your problem, you should visit this page – AWS CloudFormation quotas.
    This documentations mentions about:

    To specify more resources, separate your template into multiple templates by using, for example, nested stack.

    Hope this is solution to your problem.

    Login or Signup to reply.
  2. It is hard to tell if you’re using Serverless Framework or not, but if that is the case, you can take advantage of dedicated plugin that will automatically split your resources into multiple stacks to get around this limitation: https://github.com/dougmoscrop/serverless-plugin-split-stacks

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search