While building enterprise applications, the parameters such as Db name, file server name etc. are often required to be different for each environment. For example, you would want to point your dev environment to the dev version of the database. When the application gets promoted to test environment, it should point to the test version of the database.
In the AWS’ Serverless Backend world, we would want to have a separate version of Lambda function to be pointing to each environment, so that we do not accidentally point the prod environment to our dev version.
But how do you set…
Architecting with AWS