Files
les-06/terraform/variables.tf
Ditmar Visser a04a62c68b
All checks were successful
Provision & Configure / Terraform Apply (push) Successful in 1m53s
fix: remove azure from template
2025-06-06 10:38:38 +00:00

54 lines
1.1 KiB
HCL

variable "prefix" {
description = "The Prefix used for all resources"
default = "week-6"
}
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 "azure_subscriptionid" {
# description = "ID of the Azure Subscription."
# sensitive = true
# }
# variable "azure_resourcegroup" {
# description = "Name of the Azure Resource Group."
# }
# variable "azure_location" {
# description = "Location of the Azure resources"
# default = "westeurope"
# }
variable "skylab_ssh_public_key" {
description = "Public key for the ESXi VM"
}
# variable "azure_ssh_public_key" {
# description = "Public key for the Azure VM"
# }
# variable "azure_ssh_private_key" {
# description = "Private key of the Azure VM"
# }