Is is possible to get an exit code for one-time EC...
# typescript
g
Is is possible to get an exit code for one-time ECS tasks that is run using
aws.ecs.getTaskExecution
(link) My use case: I want to run migrations using one-time task, wait for completion, check for task code and then deploy ECS service.
v
You could use the SDK in a method within a custom resource in your pulumi program to check this
g
Thanks, that seems to be the way to go.