After creating a Windows Server Virtual Machine in Azure I noticed that the OS disk (C: drive) is only 30GB in size.
My impression was that all new VMs have 127GB OS disk size. (Expand the OS drive of a Windows VM in Azure)
Could someone clarify please?
Edit
Also, I was creating a VM using my MSDN subscription - could that be the cause of this?
Edit 2
I managed to increase the OS drive size by running the following (as described in linked article above). Then I had to resize the disk inside the OS.
Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionName 'my-subscription-name'
$rgName = 'my-resource-group-name'
$vmName = 'my-vm-name'
$vm = Get-AzureRmVM -ResourceGroupName $rgName -Name $vmName
Stop-AzureRmVM -ResourceGroupName $rgName -Name $vmName
# Set the size to whatever is needed.
$vm.StorageProfile.OSDisk.DiskSizeGB = 1023
Update-AzureRmVM -ResourceGroupName $rgName -VM $vm
Start-AzureRmVM -ResourceGroupName $rgName -Name $vmName