39 lines
		
	
	
		
			728 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			728 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| #
 | |
| #  See https://www.terraform.io/intro/getting-started/variables.html for more details.
 | |
| #
 | |
| #  Don't change the variables in this file! 
 | |
| #  Instead, create a terrform.tfvars file to override them.
 | |
| 
 | |
| variable "esxi_hostname" {
 | |
|   default = ""
 | |
| }
 | |
| 
 | |
| variable "esxi_hostport" {
 | |
|   default = "22"
 | |
| }
 | |
| 
 | |
| variable "esxi_username" {
 | |
|   default = "root"
 | |
| }
 | |
| 
 | |
| variable "esxi_password" { # Unspecified will prompt
 | |
| }
 | |
| 
 | |
| variable "esxi_datastore" {
 | |
|   default = "datastore1"
 | |
| }
 | |
| 
 | |
| variable "vm_network" {
 | |
|   default = "VM Network"
 | |
| }
 | |
| 
 | |
| variable "hostonly_network" {
 | |
|   default = "HostOnly Network"
 | |
| }
 | |
| 
 | |
| variable "create_exchange_server" {
 | |
|   description = "If set to true, adds an additional host that installs exchange"
 | |
|   type        = bool
 | |
|   default     = false
 | |
| }
 | 
