This message was deleted.
# python
s
This message was deleted.
b
So in essence you need some kind of wait command, to get back the deployed properties of the vnet? not sure if pulumi has the
wait=true
switch which awscli and ansible aws modules have (which make the calls essentially sync calls). If not, then you have 2 options imo: 1: different projects, and use project reference to get the outputs 2 (a bit hacky): do some loop, to wait for the required property to be not None or empty string or something like that. I'm using Azure, but had to revert to a similar workaround, because after creating an IP address resource did not return the assigned IP (it returned null), but running a
get_
function on the same resource returned the IP after deployment.
n
That's the exact problem I'm trying to solve. When I create a VPC AWS assigns a IPv6 block to it. I need that for later calls, but it's unclear how to get that in a blocking way