This is a conversion of ARM template 101-vm-tags from the repository azure\azure-quickstart-templates to Terraform configuration.
This configuration allows you to deploy a simple Windows VM using a few different options for the Windows version, using the latest patched version. It include tags on the Virtual Machine, Storage Account, Public IP Address, Virtual Network, and Network Interface, and it will deploy the following resources…
Note:
If the specified resource group is already exist then the script will not continue with the deployment. If you want to deploy the resources to the existing resource group, then import the resource group to state before deployment.
# To initialize the configuration directory
PS C:\Terraform\101-vm-tags> terraform init
# To check the execution plan
PS C:\Terraform\101-vm-tags> terraform plan
# To deploy the configuration
PS C:\Terraform\101-vm-tags> terraform apply
# Initialize
PS C:\Terraform\101-vm-tags> terraform init
# Plan
PS C:\Terraform\101-vm-tags> terraform plan
var.adminUsername
Default Admin username
Enter a value: cloudguy
var.adminPassword
Password for the Virtual Machine.
Enter a value: *********
<--- output truncated --->
# Apply
PS C:\Terraform\101-vm-tags> terraform apply
var.adminUsername
Default Admin username
Enter a value: cloudguy
var.adminPassword
Password for the Virtual Machine.
Enter a value: *********
azurerm_virtual_network.avn-01: Creating...
azurerm_public_ip.apip-01: Still creating... [20s elapsed]
<--- output truncated --->
azurerm_windows_virtual_machine.avm-01: Still creating... [2m20s elapsed]
azurerm_windows_virtual_machine.avm-01: Creation complete after 3m3s
Apply complete! Resources: 12 added, 0 changed, 0 destroyed.