Hi! I wonder if it’s possible to only create resou...
# general
b
Hi! I wonder if it’s possible to only create resources (not delete anything) when running
pulumi up
? There might be a flag or something. The reason is that we have a .sh that runs several files with
pulumi up
and we don’t want anything from the first file to be removed when running the 2nd file and so on…
d
Learning pulumi myself right now, but that sounds like a use-case for separate projects or stacks, no?
b
Hmm yeah I am new myself.. I see, but is it possible to reach outputs from different stacks within the same project?
s
Yes, you can use stackreferences and read the output from them
b
Thanks!!