This message was deleted.
# general
s
This message was deleted.
b
set parent of the existing resources that you move into the component resource, then set an
aliases: [{parent: pulumi.rootStackResource}]
.. so that your options would look like this:
Copy code
},{
            parent: this,
            aliases: [{parent: pulumi.rootStackResource}]
        })
Run the program for each of your existing stacks to update the relationships, once all are updated, you can remove the alias again
l
@better-shampoo-48884 That works perfectly, thanks!