builder/amazon/common: wait for terminated state

This commit is contained in:
Mitchell Hashimoto 2013-07-31 09:37:43 -07:00
parent 00338a0b85
commit 006f0440a7
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ func (s *StepRunSourceInstance) Cleanup(state map[string]interface{}) {
Conn: ec2conn,
Pending: []string{"pending", "running", "shutting-down", "stopped", "stopping"},
Refresh: InstanceStateRefreshFunc(ec2conn, s.instance),
Target: "running",
Target: "terminated",
}
WaitForState(&stateChange)