Files
iac-opentofu-public/proxmox.variables.tf

27 lines
528 B
HCL

variable "proxmox_server" {
description = "Proxmox server URL"
type = string
sensitive = false
}
variable "proxmox_apikey" {
description = "Proxmox server api key"
type = string
sensitive = false
}
variable "image_source_url" {
default = "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img"
}
variable "local_image_path" {
default = "./images/ubuntu-bionic.img"
}
variable "node_name" {
default = "fenix"
}
variable "datastore_id" {
default = "local-lvm"
}