late-airplane-27955
11/12/2024, 11:09 PMerror: Duplicate resource URN 'urn:pulumi:<stuff>::pulumi:pulumi:Stack::<stuff>'; try giving it a unique name
anyone know if there's a way around this? The entire stack is the same, its just that I now inherit from the "stack" class so I can provide outputs. Is there any way of fixing this without having to tear down the stack?nutritious-air-21788
11/14/2024, 11:02 PMreturn await …
method myself - but it sounds like the Stack
class is trying to create something that already exists, ordinarily you might use import to fix this but idt you can import a stack.nutritious-air-21788
11/14/2024, 11:02 PMpulumi stack export > blah
and then look for the URN referenced? it should have an entry under resources
that has the matching urn
and a type
.nutritious-air-21788
11/14/2024, 11:04 PMpulumi:pulumi:Stack
or something else)late-airplane-27955
11/15/2024, 8:21 AM