https://pulumi.com logo
#aws
Title
# aws
g

gentle-application-59272

11/07/2023, 10:53 AM
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

great-sunset-355

11/07/2023, 4:01 PM
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

gentle-application-59272

11/08/2023, 11:05 AM
@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

great-sunset-355

11/08/2023, 11:36 AM
ouch, I did not realise that, maybe a custom component or
parent
would work