Hi (-:
I am in the middle of implementing our own Infrastructe Block, to run flows on Render.
I am stuck at point where inside the run() function of the Infrastructe block, I somehow need to get the current flow_run_id.
Once I’ll be able to get the current flow_run_id, I could make a REST API call to Render’s backend, telling it to start a new instance with the command:
python -m prefect.engine {flow_run_id}
To give more context, the Infrastructure Block is:
(please don’t mind the red arrow pointing at the “identifier”, this might be a different question

I’ve tried looking at the ECSTask file which implements the same thing we are trying to achieve here, but I couldn’t find any mention of the flow_run_id in the run() or how it’s being fetched.
Any help would be much appreciated!