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).
This commit is contained in:
Joe Selman 2017-08-11 10:46:30 -07:00 committed by GitHub
parent 932c963695
commit e0e9b3a4d7

View File

@ -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.",
},