Make Google Instance disk attribute all ForceNew. Fix #608.

This commit is contained in:
Dave Cunningham 2015-02-13 12:55:16 -05:00
parent 625f440d95
commit b7f5f491e2
1 changed files with 3 additions and 0 deletions

View File

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