This message was deleted.
# typescript
s
This message was deleted.
b
What happens if you remove the
!
from the end of
clusterName
?
g
nothing
I found a workaround using
interpolate
but it's not great IMO
w
I believe what you are running into here is the same issue tracked in https://github.com/pulumi/pulumi/issues/6175. Note that this actually works fine in Node.js, just the TypeScript types don't allow it - so you can just cast to
any
and it will work. But there is also an improvement at the TypeScript layer being pursued in https://github.com/pulumi/pulumi/pull/6323 which would make this work without any need for workarounds.
🙌 1