provider/aws: clarify scaling timeout error

This just gives the user a better hint to why their scaling may have timed out.
This commit is contained in:
Jack Pearkes 2015-06-05 17:14:21 -04:00
parent f75488ed00
commit 6c29671561
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ func waitForASGCapacity(d *schema.ResourceData, meta interface{}) error {
return nil
}
return fmt.Errorf("Still need to wait for more healthy instances.")
return fmt.Errorf("Still need to wait for more healthy instances. This could mean instances failed to launch. See Scaling History for more information.")
})
}