here (<https://www.pulumi.com/docs/intro/concepts/...
# general
g
here (https://www.pulumi.com/docs/intro/concepts/project/#stack-settings-file) it says:
When using ephemeral stacks, the stack settings are typically not checked into source control.
So my question is… let’s say I’m deploying an
xyz
ephemeral stack, for which maybe I need a couple of configuration params (so, in
Pulumi.xyz.yml
).. what would be the best practice here? Should we create the stack file on the go (prepare it), or? maybe I’m missing something… thanks!
b
pulumi up -c
allows you to specify config for these ephmeral stacks, i believe
g
cool, will check it out, thanks 🙂