Update azuredeploydisk.bicep

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

View File

@ -1,12 +1,12 @@
@description('Name of the managed disk to be copied')
param managedDiskName string = 'diskname'
@description('Logical Sector Size. Recommended 4096 unless application requires 512 bytes sector size support')
@description('Logical Sector Size.)
@allowed([
512
4096
])
param logicalSectorSize int = 4096
param logicalSectorSize int = 512
@description('Disk size in GiB')
@minValue(4)