From e0e9b3a4d7181d66208f651670dcedadc61acd7d Mon Sep 17 00:00:00 2001 From: Joe Selman Date: Fri, 11 Aug 2017 10:46:30 -0700 Subject: [PATCH] Remove default value for removed value automatic_restart (#321) Import tests for compute_instance_template fail without this change as they expect a value of true for automatic_restart. As this value was removed, we're no longer setting it (and therefore it looks like it has a value of false, which is different from the default). --- google/resource_compute_instance_template.go | 1 - 1 file changed, 1 deletion(-) diff --git a/google/resource_compute_instance_template.go b/google/resource_compute_instance_template.go index f4991ed0..a3c78db4 100644 --- a/google/resource_compute_instance_template.go +++ b/google/resource_compute_instance_template.go @@ -137,7 +137,6 @@ func resourceComputeInstanceTemplate() *schema.Resource { "automatic_restart": &schema.Schema{ Type: schema.TypeBool, Optional: true, - Default: true, ForceNew: true, Removed: "Use 'scheduling.automatic_restart' instead.", },