I'd like to continue the deployment (or force) even if a resource already exists.
Atm I got this error:
Serverless Error ---------------------------------------
An error occurred while provisioning your stack: AvailableDynamoDbTable
- Available already exists.
This question is fairly old, but still shows up in the top 5 results in Google, so here is a bit of an insight:
It's a good idea to split up your serverless stack into multiple services, each having its own serverless.yml
file. One for your API and lambdas, one for your DynamoDB. This way you can deal with them separately and update your lambdas without touching your DB.
Here is a great guide on that: