hi, is there any way to perform operations on the ...
# general
d
hi, is there any way to perform operations on the stack with selection? eg: multiple resources and you want to delete only some etc? so something like during plan phase select stuff that only need to be deleted rather full stack
e
pulumi up --help
list the following two options which sounds like what you want:
Copy code
-t, --target stringArray                    Specify a single resource URN to update. Other resources will not be updated. Multiple resources can be specified using --target urn1 --target urn2
--target-dependents                     Allows updating of dependent targets discovered but not specified in --target list
d
thanks, thats awesome :-)