Hi there! How do i convert Pulumi.output `vpc.pub...
# typescript
e
Hi there! How do i convert Pulumi.output
vpc.publicSubnetIds
to String? (there is don't have
apply
...)
l
publicSubnetIds
returns an array of
Promise
of
OutputInstances
. So you can iterate over the array. Then
await
each one, or call
then()
. Then you can
apply()
that.
🙏 1