I'm using AppSync
with Lambdas
. To do so, I use the serverless framework
.
I have few questions about the way you manage your serverless project with it's dev/test/prod versions.
I currently use the --stage
option like sls deploy -s test
to have multiple version. But if there is a problem after a deployment I can't rollback
so I wonder if I should deploy with a new name all the time and remove the preview version later?
EDIT: I've found this that should do it for lambdas but will that work for AppSync?
How do you manage your dev/test/prod versions of AppSync and Lambdas?