Is there a way to taint a resource using pulumi? I know I can target destroy but I want to recreate a resource along with any dependency updates/recreations that need to go along with it. So marking a resource for recreation is what I am looking for.
g
gentle-diamond-70147
03/25/2020, 4:32 AM
pulumi up --target-dependents --target-replace ...
should do it
👍 1
f
fast-dinner-32080
03/25/2020, 4:32 AM
ah cool I was missing the --target-replace option! Thanks