Update azuredeploydisk.bicep

This commit is contained in:
staleycyn 2024-02-09 11:37:39 -08:00 committed by GitHub
parent 7ac0d89f77
commit 179977af41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,6 @@
@description('Name of the managed disk to be copied') @description('Name of the managed disk to be copied')
param managedDiskName string = 'diskname' param managedDiskName string = 'diskname'
@description('Logical Sector Size.)
@allowed([
512
4096
])
param logicalSectorSize int = 512
@description('Disk size in GiB') @description('Disk size in GiB')
@minValue(4) @minValue(4)
@maxValue(65536) @maxValue(65536)
@ -35,7 +28,6 @@ resource managedDisk 'Microsoft.Compute/disks@2020-09-30' = {
properties: { properties: {
creationData: { creationData: {
createOption: 'Empty' createOption: 'Empty'
logicalSectorSize: logicalSectorSize
} }
diskSizeGB: diskSizeinGiB diskSizeGB: diskSizeinGiB
diskIOPSReadWrite: diskIopsReadWrite diskIOPSReadWrite: diskIopsReadWrite