This message was deleted.
# general
s
This message was deleted.
t
Try
Copy code
vpcStack.getOutput("publicSubnetIds").apply(toArray)
b
that gives me a compiler error
t
That's a good error in a sense that it shows the problem at compile time. It looks like the type of
publicSubnetIds
is not great - it doesn't allow an
Output
. Try
toArray(vpcStack.getOutputSync("publicSubnetIds"))
?
b
that appears to be working… thanks! I’ll keep going and see what happens