This visual execution shows how Terraform composes modules. The root module calls a 'network' module with a CIDR block input. The 'network' module creates a VPC and outputs its ID. Then the root calls a 'servers' module, passing the VPC ID as input. The 'servers' module creates servers inside that VPC. Variables like 'vpc_id' and 'network_id' track values passed between modules. The execution table shows each step: starting root, calling modules, outputs, and applying resources. Key moments clarify why outputs are passed and what happens if a module fails. The quiz tests understanding of variable values and module input timing. The snapshot summarizes module composition as a way to organize and reuse infrastructure code by passing inputs and outputs between modules.