Hello people, I have a small obstacle on my projec...
# general
a
Hello people, I have a small obstacle on my project where beanstalk's ec2 instances take longer to create and I need the instances ID so I can work with their security groups and their ingress rules Is the any module native to pulumi to let it know it needs to wait (I rather no use use async if it's possible).
b
this is kinda complex, it's not possible without async. You'd need to wait for the autoscaling output to resolve, do a lookup on the autoscaling group to retrieve the instance ids and then pass it to the ingress rule
a
I understand, async time then, thank you!👍