Skip to content

Commit 41e36db

Browse files
committed
Fix parameter names to use correct unit of storage
1 parent 98238a9 commit 41e36db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/operator-nexus/includes/virtual-machine/virtual-machine-bicep-template.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ param sshPublicKeys array
6868
])
6969
param osDisk string = 'Ephemeral'
7070

71-
@description('The size of the virtual machine OS disk in GB')
72-
param osDiskSizeGB int = 64
71+
@description('The size of the virtual machine OS disk in GiB')
72+
param osDiskSizeGiB int = 64
7373

7474
@description('The list of volume attachments to the virtual machine.')
7575
param volumeAttachments array
@@ -79,7 +79,7 @@ param storageProfile object = {
7979
osDisk: {
8080
createOption: (empty(osDisk) ? 'Ephemeral' : osDisk)
8181
deleteOption: 'Delete'
82-
diskSizeGB: osDiskSizeGB
82+
diskSizeGB: osDiskSizeGiB
8383
}
8484
volumeAttachments: (empty(volumeAttachments) ? null : volumeAttachments)
8585
}

0 commit comments

Comments
 (0)