provider/openstack: Handle volumes in "deleting" state
This commit prevents Terraform from erroring when an attempt is made to delete a volume already in a "deleting" state. This can happen when the volume is the root disk of an instance and the instance was terminated.
This commit is contained in:
parent
be07e4c0c9
commit
c3f6bbcece
|
@ -259,9 +259,13 @@ func resourceBlockStorageVolumeV1Delete(d *schema.ResourceData, meta interface{}
|
|||
}
|
||||
}
|
||||
|
||||
err = volumes.Delete(blockStorageClient, d.Id()).ExtractErr()
|
||||
if err != nil {
|
||||
return fmt.Errorf("Error deleting OpenStack volume: %s", err)
|
||||
// It's possible that this volume was used as a boot device and is currently
|
||||
// in a "deleting" state from when the instance was terminated.
|
||||
// If this is true, just move on. It'll eventually delete.
|
||||
if v.Status != "deleting" {
|
||||
if err := volumes.Delete(blockStorageClient, d.Id()).ExtractErr(); err != nil {
|
||||
return CheckDeleted(d, err, "volume")
|
||||
}
|
||||
}
|
||||
|
||||
// Wait for the volume to delete before moving on.
|
||||
|
|
Loading…
Reference in New Issue