Architect Modern Web Applications with ASP.NET Core and Azure

https://docs.microsoft.com/en-us/dotnet/architecture/modern-web-apps-azure/
https://docs.microsoft.com/en-us/dotnet/architecture/cloud-native/introduce-eshoponcontainers-reference-app

An Overview of eShopOnWeb, an ASP.NET Core Reference Application

https://docs.microsoft.com/en-us/dotnet/architecture/cloud-native/introduce-eshoponcontainers-reference-app

Easily Connect Espressif Devices to Azure IoT

https://techcommunity.microsoft.com/t5/internet-of-things/easily-connect-espressif-devices-to-azure-iot/ba-p/1121262

Sitecore 9 Installation on Azure using Sitecore Installation Framework

https://www.youtube.com/watch?v=pYW2spnRL9U

Sitecore 9 on Azure

Walkthrough: Deploying a new Sitecore environment to the Microsoft Azure App service

Sitecore 9.2 PaaS On Azure: A Hosting Price Breakdown

Expand virtual hard disks on a Linux VM with the Azure CLI

az login
az account set --subscription "Visual Studio Premium with MSDN"
az vm deallocate --resource-group myResourceGroup --name myVM

az disk list \
    --resource-group dev-desktop \
    --query '[*].{Name:name,Gb:diskSizeGb,Tier:accountType}' \
    --output table
	
az disk update \
    --resource-group dev-desktop \
    --name myDataDisk \
    --size-gb 256	
		
az vm start --resource-group myResourceGroup  --name myVM	

Original link: https://docs.microsoft.com/en-us/azure/virtual-machines/linux/expand-disks