So, what actually happens when we run that super easy deploy command? Well, if we use the console output of the service we deployed previously, we can see that there are some log messages.
These log messages show the current deployment progress, which follows the automated steps in the following diagram:
First, the serverless deploy command takes looks at your serverless.yml file and figures out what it needs in order to assemble a CloudFormation template. Then, it checks if there is already a CloudFormation stack that has been deployed. If not, serverless will deploy a new ...