Description
Hello!
- Vote on this issue by adding a 👍 reaction
- If you want to implement this feature, comment to let us know (we'll work with you on design, scheduling, etc.)
Issue details
I would like to be able to define a relationship between a remote.Command
and another resource (e.g. an Instance
), so that the Command is implicitly deleted when the instance disappears. My problem is this sequence of steps:
- Create an
aws.ec2.Instance
with Pulumi - Create a
Command
, withcreate
anddelete
options on this instance - Delete the instance outside of Pulumi
- Run
pulumi refresh
(detects the instance as removed, but not the command) - Run
pulumi up
In the last step, pulumi correctly tries to create the instance, but tries to replace
the command. This involves running the delete
step on the old instance, which no longer exists, so it fails.
I would like to be able to tell Pulumi that if the instance disappears during pulumi refresh
, any command run on that instance should be considered deleted. This shouldn't be the default, since a command might create aribitrary resources and it might be correct to fail if it can't be cleaned up from the original instance. However, right now I have to delete a lot of commands from my stack manually whenever an instance is removed outside of Pulumi.
For some additional discussion, see this slack conversation.