Creating and Managing Resources with Azure CLI
5.1 Creating Virtual Machines (VMs)
Virtual Machines (VMs) are one of the most common resources you'll deploy in Azure.
π οΈ Create a Linux VM
--resource-group
Where the VM will be created
--name
Name of the VM
--image
OS image (Ubuntu, Windows, etc.)
--admin-username
Login username
--generate-ssh-keys
Automatically create SSH keys
β This command will create:
VM
Public IP
NIC (Network Interface)
OS Disk
Virtual Network (if needed)
π₯οΈ Create a Windows VM
β οΈ Tip: Passwords must meet Azureβs complexity requirements!
π 5.2 Connect to the VM
Get the public IP address of the VM:
Connect to a Linux VM:
Connect to a Windows VM (RDP):
Open Remote Desktop Connection.
Enter the public IP.
Login with the username/password.
β Now you're inside your VM!
π 5.3 Managing a VM (Start, Stop, Restart, Delete)
Stop a VM
az vm stop --name myVM --resource-group myResourceGroup
Start a VM
az vm start --name myVM --resource-group myResourceGroup
Restart a VM
az vm restart --name myVM --resource-group myResourceGroup
Delete a VM
az vm delete --name myVM --resource-group myResourceGroup
β Important: Stopping a VM does not delete it β it just stops billing for compute time (but storage costs remain).
π¦ 5.4 Creating Storage Accounts
Storage Accounts provide scalable, durable cloud storage for:
Blobs
Files
Tables
Queues
π οΈ Create a Storage Account
--name
Globally unique name
--resource-group
Where the Storage Account will be created
--location
Azure region
--sku
Storage redundancy options (LRS, GRS)
β Name must be globally unique (only lowercase letters and numbers).
List Storage Accounts
Delete a Storage Account
π 5.5 Creating Basic Networking Components
π οΈ Create a Virtual Network (VNet)
β This creates a VNet and a Subnet at the same time.
π‘οΈ Create a Network Security Group (NSG)
NSG controls inbound/outbound traffic to resources like VMs.
π‘οΈ Create an NSG Rule to Allow SSH (Linux VM)
β This opens port 22 (SSH) inbound.
π§Ή 5.6 Cleaning Up Resources
When you're done, delete the Resource Group to clean up everything inside it:
β This deletes the VMs, Storage Accounts, VNets, everything inside the group.
π Module 5 Summary
Create VMs
az vm create
Connect to VMs
SSH (Linux) or RDP (Windows)
Manage VMs
Start, stop, restart, delete
Create Storage Accounts
az storage account create
Create Networking Components
VNet, Subnet, NSG
Clean up Resources
az group delete
Last updated