i am new to Pulumi with Go.. I am trying to use `e...
# general
c
i am new to Pulumi with Go.. I am trying to use
ec2.GetSubnetIdsOutput
to lookup the subnet ids then would like to loop through the subnet ids. However I am having trouble to range over pulumi.StringArrayOutput (the Ids() returned by the look up).. anything I am missing?
b
you need to do it inside an
ApplyT
c
thank you.. that works.. 🙂