diff --git a/builder/amazon/common/step_ami_region_copy.go b/builder/amazon/common/step_ami_region_copy.go index 5c9b32cddb8294ace113281fd629375f715bb0ea..99bb35c3c6638c41447cb40ac257417aa4d2fa6c 100644 --- a/builder/amazon/common/step_ami_region_copy.go +++ b/builder/amazon/common/step_ami_region_copy.go @@ -23,8 +23,9 @@ func (s *StepAMIRegionCopy) Run(state map[string]interface{}) multistep.StepActi return multistep.ActionContinue } + ui.Say(fmt.Sprintf("Copying AMI (%s) to other regions...", ami)) for _, region := range s.Regions { - ui.Say(fmt.Sprintf("Copying AMI (%s) to region (%s)...", ami, region)) + ui.Message(fmt.Sprintf("Copying to: %s", region)) // Connect to the region where the AMI will be copied to regionconn := ec2.New(ec2conn.Auth, aws.Regions[region])