amazon cloudformation - DynamoDB/CF - Subscriber limit exceeded: Only 10 tables can be created, updated, or deleted simultaneously -


i trying create 24 dynamodb tables using serverless.yml when got below error. how circumvent this?

serverless: checking stack update progress… .................................................................serverless: deployment failed!

serverless error ---------------------------------------

an error occurred while provisioning stack: testusertable - subscriber limit exceeded: 10 tables can created, updated, or deleted simultaneously. environment information ----------------------------- os: linux node version: 6.6.0 serverless version: 1.1.0

this seems general issue cloudformation, here workaround in aws forum: https://forums.aws.amazon.com/thread.jspa?threadid=167996

i tried adding dependson still not solve

i following error serverlesserror: template format error: unresolved resource dependencies [dev1producttables] in resources block of template

putting dependson: "devpolicytable" in quotes not make difference

resources: resources: devusertable:  type: "aws::dynamodb::table" dependson: devpolicytable properties:  attributedefinitions:  - attributename: "id" attributetype: "s" keyschema:  - attributename: "id" keytype: "hash" provisionedthroughput:  readcapacityunits: 1 writecapacityunits: 1 tablename: "b1-dev-user" devpolicytable:  type: "aws::dynamodb::table" dependson: devclaimtable properties:  attributedefinitions:  - attributename: "id" attributetype: "s" keyschema:  - attributename: "id" keytype: "hash" provisionedthroughput:  readcapacityunits: 1 writecapacityunits: 1 tablename: "b1-dev-policy" 


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -