variable "user" {}
variable "password" {}

module "vmware_vms" {
  source = "git@github.com:theorchard/terraform-vmware.git"

  vsphere_user     = "${var.user}" # use this syntax, username@domain.com and NOT domain\username when prompt
  vsphere_password = "${var.password}"
  vsphere_server   = "t0-vcenter-appliance01.ny.theorchard.com"

  vm_hostnames = [
    "prod-t0-linux-jump01"
  ]
  vm_domain = "theorchard.local"

  vsphere_datacenter_name      = "t0-vsphere"
  vsphere_datastore_name       = "t0-nimble01-vol2"
  vsphere_compute_cluster_name = "t0-vsphere-cluster"
  vsphere_network_name         = "Tier0_admin"
}