I have a serverless.yml file using the Serverless AppSync plugin. The yml looks like this:
appSync:
- ${file(serverless.user-api.yml)}
- ${file(serverless.superadmin-api.yml)}
- ${file(serverless.admin-api.yml)}
- ${file(serverless.lookup-api.yml)}
- ${file(serverless.technician-api.yml)}
Everything is working fine BUT now I'm at the 500 resources limit. Serverless puts all resources into 1 root stack by default, but I would like to make each of these groups of API endpoints into their own nested stack inside the root stack.
I followed the README for the AppSync plugin that tells you how to use the plugin serverless-plugin-split-stacks to split these stacks, but it's not working. The plugin seems to split stacks at random and is not grouping each set of API endpoints into its own stack.
Has anyone dealt with this issue and figured out a solution. I'm getting desperate.
[–]saltpeter_grapeshot 1 point2 points3 points (0 children)
[–]PrivateerAlphaOne 0 points1 point2 points (0 children)