diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-18 21:03:00 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-18 21:03:00 +0100 |
commit | 1e1a8a1f3f4a8586072d3e31d2bef9c27786d448 (patch) | |
tree | 95b1618e62c971265f1df55131e1a784d2e3d873 /opentofu/variables.tf | |
parent | 8af7efa1e03c1d37cf34197249e487348d382d82 (diff) |
Also changes the id of the packer images,
now starting at the "end" (999), while VMs start at 100
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 |