Can i make a `aws.mediaconnect.getFlowSourceOutput...
# aws
g
Can i make a
aws.mediaconnect.getFlowSourceOutput
wait on an
aws.cloudformation.Stack
? reason: for some bug a couple of aws.mediaconnect resources dont build and i dont have time to chase that rabbit, i've built them using aws.cloudformation.Stack however that is now refusing to output some data i need from those resources that it built. I think i could get the data usingaws.mediaconnect.getFlowSourceOutput
g
if pulumi waits for the stack deployment to finish then you should be able to use
dependsOn
in
opts
eg.
aws.mediaconnect.getFlowSourceOutput({..},{dependsOn:[myCfnStack]
g
@great-sunset-355 i'll fetch latestbut as i understand
getFlowSourceOutput
doesn't have a dependsOn key
i ~could wrap it in a custom component that has a dependsOn
g
ouch, I did not realise that, maybe a custom component or
parent
would work