DEV Community

yaswanthteja
yaswanthteja

Posted on

Create an Azure Resource using scripts in Azure PowerShell #1

Recall our original scenario: creating VMs to test our CRM software. When a new build is available, we want to spin up a new VM so we can test the full install experience from a clean image. When we're finished, we want to delete the VM.

Let's try the commands you would use to create a VM.

Create a Linux VM with Azure PowerShell

Because we're using the Azure sandbox, you won't have to create a resource group. Instead, use the resource group [sandbox resource group name]. In addition, be aware of the location restrictions.

Let's create a new Azure VM with PowerShell.

1.Use the New-AzVm cmdlet to create a VM.

  • Use the resource group [sandbox resource group name].

  • Give the VM a name. Typically, you want to use something meaningful that identifies the purposes of the VM, location, and (if there's more than one) instance number. We'll use "testvm-eus-01" for "Test VM in East US, instance 1". Come up with your own name based on where you'll place the VM.

  • Select a location close to you from the following list, available in the Azure sandbox. Make sure to change the value in the following example command if you're using copy and paste.

westus2
southcentralus
centralus
eastus
westeurope
southeastasia
japaneast
brazilsouth
australiasoutheast
centralindia
Use "UbuntuLTS" for the image; this is Ubuntu Linux.

  • Use the Get-Credential cmdlet and feed the results into the Credential parameter. Have lowercase characters Have uppercase characters Have a digit Have a special character (Regex match [\W_]) Add the -OpenPorts parameter and pass "22" as the port. This port will let us SSH into the machine.

Create a public IP address name. You'll use this name to create and find your static IP address to sign in to the machine.

New-AzVm -ResourceGroupName [sandbox resource group name] -Name "testvm-eus-01" -Credential (Get-Credential) -Location "East US" -Image UbuntuLTS -OpenPorts 22 -PublicIpAddressName "testvm-01"
Enter fullscreen mode Exit fullscreen mode

You can use the Copy button to copy commands to the clipboard. To paste, right-click on a new line in the Cloud Shell window and select Paste, or use the Shift+Insert keyboard shortcut (⌘+V on macOS).

2.Create a username and password, then press Enter. PowerShell will start creating your VM.

3.The VM creation takes a few minutes to complete. After completion, you can query it and assign the VM object to a variable ($vm).

$vm = (Get-AzVM -Name "testvm-eus-01" -ResourceGroupName [sandbox resource group name])
Enter fullscreen mode Exit fullscreen mode
  1. Query the value to dump out the information about the VM.
$vm
Enter fullscreen mode Exit fullscreen mode

You should see something like the following output:

ResourceGroupName : [sandbox resource group name]
Id                : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/[sandbox resource group name]/providers/Microsoft.Compute/virtualMachines/testvm-eus-01
VmId              : 00000000-0000-0000-0000-000000000000
Name              : testvm-eus-01
Type              : Microsoft.Compute/virtualMachines
Location          : eastus
Tags              : {}
HardwareProfile   : {VmSize}
NetworkProfile    : {NetworkInterfaces}
OSProfile         : {ComputerName, AdminUsername, LinuxConfiguration, Secrets}
ProvisioningState : Succeeded
StorageProfile    : {ImageReference, OsDisk, DataDisks}
Enter fullscreen mode Exit fullscreen mode
  1. You can reach into complex objects through a dot (".") notation. For example, to see the properties in the VMSize object associated with the HardwareProfile section, run the following command:
$vm.HardwareProfile
Enter fullscreen mode Exit fullscreen mode
  1. Or, to get information on one of the disks, run the following command:
$vm.StorageProfile.OsDisk
Enter fullscreen mode Exit fullscreen mode
  1. You can even pass the VM object into other cmdlets. For example, running the following command will show you all available sizes for your VM:
$vm | Get-AzVMSize
Enter fullscreen mode Exit fullscreen mode
  1. Now, run the following command to get your public IP address:
Get-AzPublicIpAddress -ResourceGroupName [sandbox resource group name] -Name "testvm-01"
Enter fullscreen mode Exit fullscreen mode
  1. With the IP address, you can connect to the VM with SSH. For example, if you used the username "bob", and the IP address is "205.22.16.5", running this command would connect to the Linux machine:
ssh bob@205.22.16.5
Enter fullscreen mode Exit fullscreen mode

Log out by entering exit.

Delete a VM

To try out some more commands, let's delete the VM. We'll shut it down first:

Stop-AzVM -Name $vm.Name -ResourceGroupName $vm.ResourceGroupName
Enter fullscreen mode Exit fullscreen mode

Now, let's delete the VM by running the Remove-AzVM cmdlet:

Remove-AzVM -Name $vm.Name -ResourceGroupName $vm.ResourceGroupName
Enter fullscreen mode Exit fullscreen mode

Run this command to list all the resources in your resource group:

Get-AzResource -ResourceGroupName $vm.ResourceGroupName | Format-TableGet-AzResource -ResourceGroupName $vm.ResourceGroupName | Format-Table
Enter fullscreen mode Exit fullscreen mode

You should see a bunch of resources (disks, virtual networks, and so on) that all still exist.

Microsoft.Compute/disks
Microsoft.Network/networkInterfaces
Microsoft.Network/networkSecurityGroups
Microsoft.Network/publicIPAddresses
Microsoft.Network/virtualNetworks
Enter fullscreen mode Exit fullscreen mode

The Remove-AzVM command just deletes the VM. It doesn't clean up any of the other resources. At this point, we'd likely just delete the resource group itself and be done with it. However, let's run through the exercise to clean it up manually. You should see a pattern in the commands.

1.Delete the network interface:

$vm | Remove-AzNetworkInterface –Force
Enter fullscreen mode Exit fullscreen mode

2.Delete the managed OS disks and storage account:

Get-AzDisk -ResourceGroupName $vm.ResourceGroupName -DiskName $vm.StorageProfile.OSDisk.Name | Remove-AzDisk -Force
Enter fullscreen mode Exit fullscreen mode

3.Next, delete the virtual network:

Get-AzVirtualNetwork -ResourceGroupName $vm.ResourceGroupName | Remove-AzVirtualNetwork -Force
Enter fullscreen mode Exit fullscreen mode

4.Delete the network security group:

Get-AzNetworkSecurityGroup -ResourceGroupName $vm.ResourceGroupName | Remove-AzNetworkSecurityGroup -Force
Enter fullscreen mode Exit fullscreen mode
  1. And finally, delete the public IP address:
Get-AzPublicIpAddress -ResourceGroupName $vm.ResourceGroupName | Remove-AzPublicIpAddress -Force
Enter fullscreen mode Exit fullscreen mode

We should've caught all the created resources. Check the resource group just to be sure. We performed many manual commands here, but a better approach would have been to write a script. Then we could reuse this logic later to create or delete a VM. Let's look at scripting with PowerShell.

Oldest comments (0)