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

rahmanyusmadi/terraform-azurerm-windows-vm

Repository files navigation

Windows Azure Module

A Terraform module to create a Windows virtual machine in Azure.

  • By default create a single Windows 10, version 1903 IT Pro
  • Generate password and store secret in key vault
  • Allow only one source IP address to access remotely
  • Auto-shutdown virtual machine by default

The simplest example how to use this module

module "windows" {
  source = "yusmadi/windows-vm/azurerm"
}

Full example how to use this module

module "windows" {
  source               = "yusmadi/windows-vm/azurerm"
  prefix               = "mywindows"
  location             = "southeastasia"
  address_space        = ["10.0.0.0/16"]
  address_prefix       = "10.0.2.0/24"
  my_public_ip_address = "13.15.17.19"
  vm_size              = "Standard_DS1_v2"
  publisher            = "MicrosoftWindowsDesktop"
  offer                = "Windows-10"
  sku                  = "19h1-pro"
  image_version        = "latest"
}

Reference

About

A Terraform module to create a Windows virtual machine in Azure

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages