how do people handle versioning their stacks by en...
# general
i
how do people handle versioning their stacks by environment? I have let’s say a dev environment. when I want to spin up a prod environment, I’d like to keep the dev environment as opposed to deleting all the dev resources before spinning up a prod env
a
We define our applications as Pulumi projects and then have a stack per environment I.e. stage dev prod etc..
Treat projects as a class definition and stacks as implementations of that class I.e. objects
👍 1