mirror of
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator.git
synced 2026-02-09 02:17:04 +00:00
Update azuredeploydisk.bicep
This commit is contained in:
parent
7ac0d89f77
commit
179977af41
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user