Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Azure Virtual Machine module for Cloud Adoption Framework for Azure landing zones

License

Notifications You must be signed in to change notification settings

aztfmod/terraform-azurerm-caf-vm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

READ ME

Thanks for your interest in Cloud Adoption Framework for Azure landing zones on Terraform. This module is now deprecated and no longer maintained.

As part of Cloud Adoption Framework landing zones for Terraform, we have migrated to a single module model, which you can find here: https://github.com/aztfmod/terraform-azurerm-caf and on the Terraform registry: https://registry.terraform.io/modules/aztfmod/caf/azurerm

In Terraform 0.13 you can now call directly submodules easily with the following syntax:

module "caf_virtual_machine" {
  source  = "aztfmod/caf/azurerm//modules/compute/virtual_machine"
  version = "0.4.18"
  # insert the 7 required variables here
}

Deploys an Azure Virtual Machine

Creates an Azure Virtual Machine. This virtual machine can be created from:

  • Azure Gallery
  • Azure Shared Image

Reference the module to a specific version (recommended):

module "vm" {
  source  = "aztfmod/caf-vm/azurerm"
  version = "0.x.y"
  
  prefix                        = var.prefix
  convention                    = var.convention
  name                          = var.name
  resource_group_name           = var.resource_group
  location                      = var.location 
  tags                          = var.tags
  network_interface_ids         = var.network_interface_ids
  primary_network_interface_id  = var.primary_network_interface_id
  os                            = var.os
  os_profile                    = var.os_profile
  storage_image_reference       = var.storage_image_reference
  storage_os_disk               = var.storage_os_disk
  vm_size                       = var.vm_size
}

Inputs

Name Type Default Description
prefix string None Prefix to be used.
convention string None Naming convention to be used (check at the naming convention module for possible values).
name string None Specifies the name of the VM. Changing this forces a new resource to be created.
resource_group_name string None The name of the resource group in which to create the VM. Changing this forces a new resource to be created.
location string None Specifies the supported Azure location where to create the resource. Changing this forces a new resource to be created.
tags map None Map of tags for the deployment.
la_workspace_id string None Log Analytics Repository ID.
network_interface_ids list False A list of Network Interface ID's which should be associated with the Virtual Machine
primary_network_interface_id string None The primary Network Interface ID's which should be associated with the Virtual Machine. Note when using multiple NICs you must set it in the nic_object configuration
os string Windows Define if the operating system is 'Linux' or 'Windows'
os_profile object None A windows or Linux profile as per documentation. To find types of images, refer to https://docs.microsoft.com/en-us/azure/virtual-machines/windows/cli-ps-findimage
os_profile_secrets object None Specifies the settings to store OS secret as defined in https://www.terraform.io/docs/providers/azurerm/r/virtual_machine.html
storage_image_reference string None storage_image_reference
storage_os_disk object null storage_os_disk
vm_size string None Azure VM size name, to list all images available in a regionm use : "az vm list-sizes --location "
availability_set_id string null A resource id of availability set to use

Output

Name Type Description
network_interface_ids list(string) Set of all NIC identifers
primary_network_interface_id string Primary NIC ID
admin_username string Name of the local admin account created
ssh_private_key_pem string Private Key of the VM
msi_system_principal_id string Principal ID for the created VM
id string Identifier of the VM
name string Name of the VM

About

Azure Virtual Machine module for Cloud Adoption Framework for Azure landing zones

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages