diff options
Diffstat (limited to 'opentofu/variables.tf')
-rw-r--r-- | opentofu/variables.tf | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/opentofu/variables.tf b/opentofu/variables.tf index c777b21..e679865 100644 --- a/opentofu/variables.tf +++ b/opentofu/variables.tf @@ -3,15 +3,10 @@ variable "proxmox_api_url" { type = string } -variable "proxmox_api_token_id" { +variable "proxmox_api_token" { type = string } -variable "proxmox_api_token_secret" { - type = string -} - - variable "proxmox_node" { description = "Proxmox node to deploy the VM on" type = string @@ -22,6 +17,10 @@ variable "debian_server_bookworm_packer_image_name" { type = string } +variable "debian_server_bookworm_packer_image_id" { + type = string +} + variable "ubuntu_server_noble_packer_image_name" { description = "Name of the Packer image to clone" type = string |