Create a resource group (if there isn't one already -
az group create -l westus -n PythonSDKTest
Create storage account -
az storage account create -n pythonsdktestsa -g PythonSDKTest -l westus --sku Standard_LRS
Create container -
az storage container create -n pythonsdkcontainer --account-name pythonsdktestsa --account-key <REDACTED>
Create nic -
az network nic create \
--resource-group PythonSDKTest \