Merge pull request #973 from sparkprime/forcenew_disk

Make Google Instance disk attribute all ForceNew. Fix #608.
pull/974/head
Paul Hinze 11 years ago
commit 3339593292

@ -54,11 +54,13 @@ func resourceComputeInstance() *schema.Resource {
"disk": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"image": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"type": &schema.Schema{
@ -70,6 +72,7 @@ func resourceComputeInstance() *schema.Resource {
"auto_delete": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
},
},
},

Loading…
Cancel
Save