terraform/vmware/avs-network-and-vm-creation/vm/variables.tf (30 lines of code) (raw):
variable "vsphere_datacenter" {
type = string
}
variable "vsphere_server" {
type = string
}
variable "vsphere_user" {
type = string
}
variable "vsphere_password" {
type = string
}
variable "vm-name" {
type = string
default = "levelup-vm"
}
variable "datastore" {
type = string
default = "vsanDatastore"
}
variable "cluster" {
type = string
default = "Cluster-1"
}
variable "host" {
type = string
}
variable "network" {
type = string
}