Skip to content

Commit

Permalink
Merge pull request #792 from becoinc/fix-582
Browse files Browse the repository at this point in the history
Set ignore case function for diffs on the managed data disk ids.
  • Loading branch information
tombuildsstuff committed Feb 6, 2018
2 parents eecb487 + 36cf8ca commit bfb6836
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions azurerm/resource_arm_virtual_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,11 @@ func resourceArmVirtualMachine() *schema.Resource {
},

"managed_disk_id": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
},

"managed_disk_type": {
Expand Down

0 comments on commit bfb6836

Please sign in to comment.