Merge pull request #13933 from hashicorp/fix-13927
provider/azurerm: ignoring the case during Diff to the `create_option` field of`azurerm_virtual_machine`
This commit is contained in:
commit
c38d5470a5
|
@ -179,6 +179,7 @@ func resourceArmVirtualMachine() *schema.Resource {
|
||||||
"create_option": {
|
"create_option": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
|
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
|
||||||
},
|
},
|
||||||
|
|
||||||
"disk_size_gb": {
|
"disk_size_gb": {
|
||||||
|
@ -234,6 +235,7 @@ func resourceArmVirtualMachine() *schema.Resource {
|
||||||
"create_option": {
|
"create_option": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
|
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
|
||||||
},
|
},
|
||||||
|
|
||||||
"caching": {
|
"caching": {
|
||||||
|
|
Loading…
Reference in New Issue