Didn't see it in the options, so maybe I just didn...
# general
s
Didn't see it in the options, so maybe I just didn't read well, but is there a way to
Copy code
pulumi stack init my_stack
without overwriting an existing Pulumi.my_stack.yaml file?
The use-case is that standard dev config is stored in source control. An engineer usually runs with a local or S3 backing on their AWS account when doing testing/development. So they'd normally have to do the following
Copy code
pulumi login <s3://their_unique_s3_bucket>
pulumi init dev_stack
git restore Pulumi.dev_stack.yaml
pulumi up
I don't really want to have to the the
git restore