Skip to content

Commit

Permalink
parsing virtual_machine os disk response insensitively to fix #28591 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
joshd-emergent authored Jan 27, 2025
1 parent 6ed1c7c commit 2280033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/compute/virtual_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func flattenVirtualMachineOSDisk(ctx context.Context, disksClient *disks.DisksCl
storageAccountType = string(pointer.From(input.ManagedDisk.StorageAccountType))

if input.ManagedDisk.Id != nil {
id, err := commonids.ParseManagedDiskID(*input.ManagedDisk.Id)
id, err := commonids.ParseManagedDiskIDInsensitively(*input.ManagedDisk.Id)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 2280033

Please sign in to comment.