Serverless allows you to specify different stages to deploy your project to. Changing the stage will change the environment your function is running on, which is helpful when you wish to keep production code partitioned from your development environment.
Your function's stage is set to 'dev' by default. You can update the stage when deploying the function, either from the command line using the serverless framework, or by modifying the serverless.yml in your project. When utilizing this feature, remember to include a config file that holds the environment IDs associated with your stages. An example config.json would look something like this:
{
"dev": "env-abcd1234",
"prod": "env-defg5678"
}
To change the stage through the serverless framework you simply need to enter the command
serverless deploy --stage #{Your Stage Name}
You will also need to update the environment parameter to point to the config.json:
 spotinst:
environment: ${file(../config.json):${sls:stage}}
To change the stage in the serverless.yml file you need to add the following into the provider tag then deploy your function as usual
provider:
name: spotinst
stage: #{Your Stage Name}
spotinst:
environment: #{Your Environment ID}
Be sure to also modify your environment ID when you change the stage if you are not working with a config file.
Product