This commit is contained in:
Mitchell Hashimoto 2014-09-09 13:43:03 -07:00
parent 1a6fc051ba
commit 6fa0b65563
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ func resourceComputeInstance() *schema.Resource {
Optional: true,
},
"auto_delete": &schema.Schema{
Type: schema.TypeBool,
Type: schema.TypeBool,
Optional: true,
},
},

View File

@ -2,8 +2,8 @@ package google
import (
"fmt"
"testing"
"strings"
"testing"
"code.google.com/p/google-api-go-client/compute/v1"
"github.com/hashicorp/terraform/helper/resource"
@ -195,7 +195,7 @@ func testAccCheckComputeInstanceDisk(instance *compute.Instance, source string,
}
for _, disk := range instance.Disks {
if strings.LastIndex(disk.Source, "/"+source) == (len(disk.Source) - len(source) - 1) && disk.AutoDelete == delete && disk.Boot == boot{
if strings.LastIndex(disk.Source, "/"+source) == (len(disk.Source)-len(source)-1) && disk.AutoDelete == delete && disk.Boot == boot {
return nil
}
}