Ignoring the case of the create_option field. Fixes #13927.

This commit is contained in:
tombuildsstuff 2017-04-25 10:45:46 +01:00
parent 4622960835
commit 5121995100
1 changed files with 6 additions and 4 deletions

View File

@ -177,8 +177,9 @@ func resourceArmVirtualMachine() *schema.Resource {
},
"create_option": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
},
"disk_size_gb": {
@ -232,8 +233,9 @@ func resourceArmVirtualMachine() *schema.Resource {
},
"create_option": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
},
"caching": {