This is a conversion of ARM template 101-vm-simple-rhel from the repository azure\azure-quickstart-templates to Terraform configuration.
This configuration allows deploying a Red Hat Enterprise Linux VM (RHEL 7.2 or RHEL 6.7), using the latest image for the selected RHEL version. It will deploy Standard D1 VM in the location of your chosen resource group with an additional 100 GiB data disk attached to the VM,, 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-simple-rhel> terraform init
# To check the execution plan
PS C:\Terraform\101-vm-simple-rhel> terraform plan
# To deploy the configuration
PS C:\Terraform\101-vm-simple-rhel> terraform apply
# Initialize
PS C:\Terraform\101-vm-simple-rhel> terraform init
# Plan
PS C:\Terraform\101-vm-simple-rhel> terraform plan
var.adminUsername
User name for the Virtual Machine.
Enter a value: demouser
var.adminPassword
The admin password of the VM.
Enter a value: *********
var.vmName
Name for the Virtual Machine.
Enter a value: demovm
<--- output truncated --->
# Apply
PS C:\Terraform\101-vm-simple-rhel> terraform apply
var.adminUsername
User name for the Virtual Machine.
Enter a value: demouser
var.adminPassword
The admin password of the VM.
Enter a value: *********
var.vmName
Name for the Virtual Machine.
Enter a value: demovm
azurerm_virtual_network.avn-01: Creating...
azurerm_virtual_network.avn-01: Still creating... [10s elapsed]
<--- output truncated --->
azurerm_virtual_machine_data_disk_attachment.adattach-01: Creation complete after 2m15s
Apply complete! Resources: 14 added, 0 changed, 0 destroyed.