Hi all, i encountered a strange bug with `pulumi s...
# general
s
Hi all, i encountered a strange bug with
pulumi state move
, i documented the issue on github: https://github.com/pulumi/pulumi/issues/20004 My main problem is that it seems that the urn i pass into the move command is trying to find the resource using a malformed urn:
Copy code
pulumi state move --dest <org_name>/infra-aws/dev --source <org_name>/infrastructure/dev -Q -v 3 --include-parents "urn:pulumi:dev::infrastructure::<org>:stack$<org>:aws$<org>:aws:eks::<org>-dev-eks"
warning: Resource urn:pulumi:dev::infrastructure::<org>:stackwsws:eks::<org>-dev-eks not found in source stack
error: no resources found to move
notice the
stackwsws
, it seems that part of the urn is replaced with
ws
, i had the same issue with another component that had only one parent and it contained
stackws
.
l
Have you checked your quotes? Is it substituting
$a
with blank because the
a
variable has no value?
s
i used double quotes
"
instead of single
'
which was the problem