Is there a way pulumi can monitor a ecs deploy? wh...
# general
c
Is there a way pulumi can monitor a ecs deploy? when i run up, it triggers a deploy, but i'll like pulumi to keep watching that deploy
l
I don't think so. You could follow the pattern that the
runCommand
function uses here: https://github.com/pulumi/examples/blob/master/aws-ts-ec2-provisioners/provisioners/index.ts
That is, you could monitor it asynchronously yourself, using Pulumi-like interfaces.