Responding to myself after noticing by looking at the AMI that it had "Delete on termination" set to "No" <img width="1051" alt="Screen Shot 2022-02-11 at 11 55 46 AM" src="https://user-images.githubusercontent.com/5667028/153634727-5f848f5c-4565-412b-a369-b4ff7edfcd3a.png"> In `/mages/ubuntu-focal/github_agent.ubuntu.pkr.hcl`, I updated to: ``` launch_block_device_mappings { device_name = "/dev/sda1" volume_size = var.root_volume_size_gb volume_type = "gp3" delete_on_termination = true } ``` _Originally posted by @Fgerthoffert in https://github.com/philips-labs/terraform-aws-github-runner/discussions/1742#discussioncomment-2158915_