File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
articles/operator-nexus/includes/virtual-machine Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ param sshPublicKeys array
68
68
])
69
69
param osDisk string = 'Ephemeral'
70
70
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
73
73
74
74
@description ('The list of volume attachments to the virtual machine.' )
75
75
param volumeAttachments array
@@ -79,7 +79,7 @@ param storageProfile object = {
79
79
osDisk : {
80
80
createOption : (empty (osDisk ) ? 'Ephemeral' : osDisk )
81
81
deleteOption : 'Delete'
82
- diskSizeGB : osDiskSizeGB
82
+ diskSizeGB : osDiskSizeGiB
83
83
}
84
84
volumeAttachments : (empty (volumeAttachments ) ? null : volumeAttachments )
85
85
}
You can’t perform that action at this time.
0 commit comments