diff --git a/proxmox.variables.tf b/proxmox.variables.tf index d0eb3d5..b4de549 100644 --- a/proxmox.variables.tf +++ b/proxmox.variables.tf @@ -4,30 +4,31 @@ variable "proxmox_server" { sensitive = false } + variable "proxmox_server_ssh" { description = "Proxmox server ssh url" type = string + sensitive = false +} + +variable "proxmox_username_ssh" { + description = "Proxmox server ssh username" + type = string + sensitive = false +} + +variable "proxmox_password_ssh" { + description = "Proxmox server ssh password" + type = string sensitive = true } 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" + sensitive = true } variable "node_name" { default = "fenix" } - -variable "datastore_id" { - default = "local-lvm" -} \ No newline at end of file