When you create an AMI, "Amazon EC2 shuts down the instance, takes images of any volumes that were attached, creates and registers the AMI, and then reloads the instance." -Amazon. When AMI is used to start an instance, images (snapshots) of mapped drives are used to create new volumes. It is these new volumes that are attached to the new copy, and not to your original EBS. (This creates many volumes and orphans with constant use.)
Automatically add the volume of EBS that you created. What is automatically added is the one that it creates when the instance starts from your AMI! He creates this volume from a snapshot taken by your EBS during the creation of AMI!
The way to avoid creating clone volumes and connecting them to new instances is simple: detach your volumes before creating the AMI. You need to attach your EBS volumes manually using the EC2 web control panel or programmatically using .net or Java programs, scripts, or command line tools.
source share