feat: create simple vm
This commit is contained in:
27
opdracht-3/variables.tf
Normal file
27
opdracht-3/variables.tf
Normal file
@@ -0,0 +1,27 @@
|
||||
variable "esxi_hostname" {
|
||||
description = "IP address of the ESXi host"
|
||||
}
|
||||
|
||||
variable "esxi_hostport" {
|
||||
description = "SSH port of the ESXi host"
|
||||
default = "22"
|
||||
}
|
||||
|
||||
variable "esxi_hostssl" {
|
||||
description = "SSL port of the ESXi host"
|
||||
default = "443"
|
||||
}
|
||||
|
||||
variable "esxi_username" {
|
||||
description = "Username to connect to the ESXi host"
|
||||
}
|
||||
|
||||
variable "esxi_password" {
|
||||
description = "Password to connect to the ESXi host"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "prefix" {
|
||||
description = "The Prefix used for all resources"
|
||||
default = "week-3-opdracht-3"
|
||||
}
|
Reference in New Issue
Block a user