This message was deleted.
# aws
s
This message was deleted.
c
Copy code
error TS2339: Property 'apply' does not exist on type 'Promise<Output<string>[]>'.
when trying to get the
subnetId
for the Instance
webserver-www
Ah... https://github.com/pulumi/pulumi-awsx/issues/491 When you remember that
awsx
is separate from
aws
in the issues it's easier to find.
l
If you want to call
apply()
on a
Promise
you can wrap it in
pulumi.output(yourPromiseGoesHere)
.
Pulumi knows to call await or then or whatever it is that it needs to call..