pull/283/head
Mitchell Hashimoto 12 years ago
parent ad7d1c056b
commit a5c884f5aa

@ -117,7 +117,6 @@ func resourceAwsInstance() *schema.Resource {
Type: schema.TypeBool,
Optional: true,
},
},
}
}

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

@ -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
}
}

Loading…
Cancel
Save