This is a conversion of ARM template 101-vm-ubuntu-DSVM-GPU-or-CPU from the repository azure\azure-quickstart-templates to Terraform configuration.
This configuration deploys a Linux VM Ubuntu with data science tools. This will deploy a CPU or GPU based VM in the resource group location and will return the admin user name, Virtual Network Name, Network Security Group Name, 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-ubuntu-DSVM-GPU-or-CPU> terraform init
# To check the execution plan
PS C:\Terraform\101-vm-ubuntu-DSVM-GPU-or-CPU> terraform plan
# To deploy the configuration
PS C:\Terraform\101-vm-ubuntu-DSVM-GPU-or-CPU> terraform apply
# Initialize
PS C:\Terraform\101-vm-ubuntu-DSVM-GPU-or-CPU> terraform init
# Plan
PS C:\Terraform\101-vm-ubuntu-DSVM-GPU-or-CPU> terraform plan
var.adminPassword
Password for the Virtual Machine. SSH key is recommended
Enter a value: ********
var.admin_username
Default Admin username
Enter a value: cloudguy
<--- output truncated --->
# Apply
PS C:\Terraform\101-vm-ubuntu-DSVM-GPU-or-CPU> terraform apply
var.adminPassword
Password for the Virtual Machine. SSH key is recommended
Enter a value: ********
var.admin_username
Default Admin username
Enter a value: cloudguy
<--- output truncated --->
Assuming public key is already generated and stored in your home directory ("~/.ssh/")
random_string.sac: Creating...
azurerm_resource_group.arg-01: Creation complete after 2s
<--- output truncated --->
azurerm_linux_virtual_machine.avm-ssh-01: Still creating... [1m30s elapsed]
azurerm_linux_virtual_machine.avm-ssh-01: Creation complete after 1m47s
Apply complete! Resources: 10 added, 0 changed, 0 destroyed.
Outputs:
adminUsername = cloudguy