Flow output node
The Flow output node lets you define named outputs within a subflow so that the parent flow can use that data in downstream nodes. Without Flow output nodes, the subflow has no output data for the parent apart from an executionId; with them, you explicitly expose specific fields (for example, a list of instance IDs or a summary count) that the parent can reference in filters, transforms, notifications, or other nodes. For example, a subflow might list EC2 instances in a region and expose an instanceIds output; the parent flow then uses that list in a Notification node to send a summary to your team.
Flow output nodes are only available in flows that are used as subflows. They have no effect when the flow runs on its own (for example, via its own trigger or a manual run).
Define outputs in the subflow
-
Open the subflow in the CloudFlow editor.
-
Add a Flow output node to the subflow. Place it after the nodes whose data you want to expose. The output can reference fields from any upstream node in the subflow.
-
Edit the Flow output node and add one or more output parameters. For each output, set a name (for example,
instanceIdsorsummary) and the field to expose — the field from an upstream node in the subflow. -
Save the subflow and publish it so the parent flow can use the new outputs.

Use clear, descriptive output names so that when you reference them in the parent flow, the intent is obvious. You can add multiple Flow output nodes or multiple output parameters to expose different fields.
Use outputs in the parent flow
-
In the parent flow, add or select the Sub Flow node that calls this subflow. Configure Flow to call and any execution parameters as needed.
-
In downstream nodes (for example, Filter, Transform, or Notification), reference the subflow's outputs via the plus icon (+) or field picker. The outputs appear under the Sub Flow node's output (for example, under the subflow's name or step number). Select the named output you defined (for example,
instanceIdsorsummary) to pass that data into the current node.
