Is there a way to molly guard some Pulumi resource...
# general
o
Is there a way to molly guard some Pulumi resources? e.g.: I want to make sure that a comment in the wrong place doesn't cause
pulumi up
to destroy a persistent volume in my CI/CD scripts. (Molly guard from the jargon file: http://www.catb.org/jargon/html/M/molly-guard.html)
g
you can set
protect: true
on resources to prevent this. https://pulumi.io/reference/programming-model.html#resourceoptions
o
Thank you!