I'm looking for something similar to ECS task where it will just run the long running task like terraform scripts without any time limit. Do we have any better approach in serverless architecture where we can just ask to perform a long running task and wait till it gets completed without timeout. Also we can not logically break the functionality or store the current status of the task and call the other function to perform the task.
I have already explored durable function where each function (starter/orchestrator/activity) still has the time limit. In AWS we can ask lambda to trigger ecs task and ecs task can perform the long running process. I'm looking for something similar in azure.