Amend AWS spot instace state name cancelled

This commit is contained in:
Raúl Naveiras 2015-07-21 17:18:50 +02:00
parent f7ab12cf56
commit 87239dcec8
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ func resourceAwsSpotInstanceRequestRead(d *schema.ResourceData, meta interface{}
request := resp.SpotInstanceRequests[0]
// if the request is cancelled, then it is gone
if *request.State == "canceled" {
if *request.State == "cancelled" {
d.SetId("")
return nil
}